1
0
Fork 0
This repository has been archived on 2024-12-18. You can view files and clone it, but cannot push or open issues or pull requests.
mining-companion/config.schema.json
Julien Riou ddc2cd08d5
Add currency option to config schema
Signed-off-by: Julien Riou <julien@riou.xyz>
2021-01-25 13:15:23 +01:00

29 lines
452 B
JSON

{
"type": "object",
"properties": {
"telegram": {
"type": "object",
"properties": {
"chat_id": {
"type": "number"
},
"auth_key": {
"type": "string"
}
},
"required": [
"chat_id",
"auth_key"
]
},
"currency": {
"type": "string"
},
"miner": {
"type": "string"
},
"state_file": {
"type": "string"
}
}
}