Rename datasource package
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-11-22 23:44:34 +01:00
parent be3895d268
commit ff084cf8e8
7 changed files with 12 additions and 12 deletions

View File

@@ -0,0 +1,24 @@
package wtf.beatrice.hidekobot.datasources;
public enum ConfigurationEntry
{
BOT_TOKEN("bot-token", "MTAxMjUzNzI5MTMwODI4NjAyMw.GWeNuh.00000000000000000000000000000000000000"),
BOT_OWNER_ID("bot-owner-id", 100000000000000000L),
BOT_COLOR("bot-color", "PINK"),
HEARTBEAT_LINK("heartbeat-link", "https://your-heartbeat-api.com/api/push/apikey?status=up&msg=OK&ping="),
;
private String path;
private Object defaultValue;
ConfigurationEntry(String path, Object defaultValue)
{
this.path = path;
this.defaultValue = defaultValue;
}
public String getPath() { return path; }
public Object getDefaultValue() { return defaultValue; }
}