PlaguBot/template.config.json

20 lines
455 B
JSON
Raw Normal View History

2020-11-12 05:52:09 +00:00
{
"database": {
"url": "jdbc:sqlite:file:test?mode=memory&cache=shared IT IS JUST EXAMPLE",
"driver": "org.sqlite.JDBC",
"username": "OPTIONAL username",
"password": "OPTIONAL password",
2022-09-04 09:07:30 +00:00
"reconnectOptions": {
"attempts": 3,
"delay": 1000
}
2020-11-12 05:52:09 +00:00
},
"botToken": "1234567890:ABCDEFGHIJKLMNOP_qrstuvwxyz12345678",
"plugins": [
2022-05-16 14:07:57 +00:00
"dev.inmo.plagubot.HelloPlugin"
],
"helloPlugin": {
"print": "Hello World"
}
}