An open API service indexing awesome lists of open source software.

https://github.com/ieee0824/jec

Embed config in json
https://github.com/ieee0824/jec

config go json

Last synced: 2 months ago
JSON representation

Embed config in json

Awesome Lists containing this project

README

          

# jec

Embed config in json

# example

## base

```
{
"Integer": "$int",
"String": "$string"
}
```

## vars

```
{
"int": 1,
"string": "hoge"
}
```

## result

```
{
"Integer": 1,
"String": "hoge"
}
```