blob: 587c7e90eb48fef17daa442de485ce646338a8bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
package soundchan;
import net.dv8tion.jda.api.AccountType;
import net.dv8tion.jda.api.JDA;
import net.dv8tion.jda.api.JDABuilder;
import soundchan.BotListener.*;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
Properties properties = LoadProperties();
JDA jda = new JDABuilder(AccountType.BOT)
.setToken(properties.getProperty("botToken"))
.addEventListeners(new BotListener(properties))
.build();
jda.awaitReady();
}
private static Properties LoadProperties(){
Properties properties = new Properties();
InputStream input = null;
try{
input = new FileInputStream("soundchan.properties");
properties.load(input);
}catch (IOException ex){
ex.printStackTrace();
} finally {
try {
input.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
return properties;
}
}
|