Remove unused DB and prefix config options
This commit is contained in:
parent
e0e6dcab3d
commit
28ba2699a3
5 changed files with 5 additions and 37 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -40,7 +40,7 @@ build/
|
||||||
|
|
||||||
### Other Stuff ###
|
### Other Stuff ###
|
||||||
config*.json
|
config*.json
|
||||||
config.example.json
|
!config.example.json
|
||||||
!**/resources/config.schema.json
|
!**/resources/config.schema.json
|
||||||
|
|
||||||
### why would this not be here already ###
|
### why would this not be here already ###
|
||||||
|
|
3
config.example.json
Normal file
3
config.example.json
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"token": "CHANGEME"
|
||||||
|
}
|
|
@ -11,8 +11,6 @@ import java.nio.charset.StandardCharsets;
|
||||||
//You will need a valid config.json in the resources folder for this to work
|
//You will need a valid config.json in the resources folder for this to work
|
||||||
public class Config {
|
public class Config {
|
||||||
@SuppressWarnings("unused") private String token;
|
@SuppressWarnings("unused") private String token;
|
||||||
@SuppressWarnings("unused") private String prefix;
|
|
||||||
@SuppressWarnings("unused") private DBConfig mariadb;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the configuration object for this bot
|
* Returns the configuration object for this bot
|
||||||
|
@ -35,29 +33,4 @@ public class Config {
|
||||||
public String getToken() {
|
public String getToken() {
|
||||||
return token;
|
return token;
|
||||||
}
|
}
|
||||||
public String getPrefix() { return prefix; }
|
|
||||||
|
|
||||||
public DBConfig getDbConfig() {
|
|
||||||
return mariadb;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class DBConfig {
|
|
||||||
@SuppressWarnings("unused") private String host, user, password, database;
|
|
||||||
@SuppressWarnings("unused") private int portNumber;
|
|
||||||
|
|
||||||
public String getHost() { return host; }
|
|
||||||
|
|
||||||
public String getUser() {
|
|
||||||
return user;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPassword() {
|
|
||||||
return password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDatabase() { return database; }
|
|
||||||
public int getPortNumber() {
|
|
||||||
return portNumber;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
|
@ -5,7 +5,6 @@ import com.freya02.botcommands.api.Logging;
|
||||||
import net.dv8tion.jda.api.JDA;
|
import net.dv8tion.jda.api.JDA;
|
||||||
import net.dv8tion.jda.api.JDABuilder;
|
import net.dv8tion.jda.api.JDABuilder;
|
||||||
import net.dv8tion.jda.api.entities.*;
|
import net.dv8tion.jda.api.entities.*;
|
||||||
import net.dv8tion.jda.api.requests.GatewayIntent;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@ -23,7 +22,6 @@ public class Doki {
|
||||||
public static JDA getJDA() {
|
public static JDA getJDA() {
|
||||||
return jda;
|
return jda;
|
||||||
}
|
}
|
||||||
public static String getPrefix() { return config.getPrefix(); }
|
|
||||||
|
|
||||||
public static void start() throws IOException, InterruptedException {
|
public static void start() throws IOException, InterruptedException {
|
||||||
config = Config.readConfig();
|
config = Config.readConfig();
|
||||||
|
|
|
@ -1,18 +1,12 @@
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"token": {
|
"token": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
|
||||||
"prefix": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [
|
"required": [
|
||||||
"token",
|
"token"
|
||||||
"prefix"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in a new issue