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 71ead214b7
Make miner optional
Signed-off-by: Julien Riou <julien@riou.xyz>
2021-01-25 13:13:13 +01:00

26 lines
404 B
JSON

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