Removed comment block
parent
c9ee99fd8b
commit
66d7594744
|
@ -10,16 +10,12 @@ public class Main{
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
// Insert your bot's token here
|
// Insert your bot's token here
|
||||||
//String token = args[0];
|
String token = args[0];
|
||||||
|
|
||||||
CheckDeploy check = new CheckDeploy(3000, "/home/milan/test.txt");
|
CheckDeploy check = new CheckDeploy(3000, "Enter Filename Here");
|
||||||
check.start();
|
check.start();
|
||||||
|
|
||||||
while(true) {
|
|
||||||
System.out.println("Woo!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
DiscordApi api = new DiscordApiBuilder().setToken(token).login().join();
|
DiscordApi api = new DiscordApiBuilder().setToken(token).login().join();
|
||||||
|
|
||||||
// Add a listener which answers with "Pong!" if someone writes "!ping"
|
// Add a listener which answers with "Pong!" if someone writes "!ping"
|
||||||
|
@ -31,7 +27,7 @@ public class Main{
|
||||||
|
|
||||||
// Print the invite url of your bot
|
// Print the invite url of your bot
|
||||||
System.out.println("You can invite the bot by using the following url: " + api.createBotInvite());
|
System.out.println("You can invite the bot by using the following url: " + api.createBotInvite());
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class CheckDeploy extends Thread{
|
public static class CheckDeploy extends Thread{
|
||||||
|
|
Loading…
Reference in New Issue