Feedback Command #88

Merged
greg6775 merged 4 commits from greg-dev into master 2019-11-22 15:18:46 +01:00
2 changed files with 10 additions and 0 deletions
Showing only changes of commit fe6b8c4887 - Show all commits

View file

@ -57,6 +57,12 @@
<artifactId>discord-webhooks</artifactId>
<version>0.1.8</version>
</dependency>
<dependency>
<groupId>org.kohsuke</groupId>
<artifactId>github-api</artifactId>
<version>1.99</version>
</dependency>
</dependencies>
<repositories>

View file

@ -94,6 +94,10 @@ public class Config {
return config.getJSONObject("Tokens").getString("Giphy");
}
public String getGitHubToken() {
return config.getJSONObject("Tokens").getString("GitHub");
}
public String getMythicalBotListToken() {
return config.getJSONObject("Tokens").getString("MythicalBotList");
}