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
- Host: GitHub
- URL: https://github.com/ieee0824/jec
- Owner: ieee0824
- License: mit
- Created: 2017-10-08T04:38:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-20T08:26:16.000Z (over 8 years ago)
- Last Synced: 2025-07-20T13:38:16.682Z (12 months ago)
- Topics: config, go, json
- Language: Go
- Homepage:
- Size: 9.77 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
```