added initial version containing ping/echo command and first draft of the command handling structure

This commit is contained in:
Sheldan
2019-12-09 23:50:24 +01:00
parent 78a4d814ad
commit 42cfe33b3a
41 changed files with 1023 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
package dev.sheldan.abstracto.service;
import net.dv8tion.jda.api.JDA;
import org.springframework.stereotype.Service;
import javax.security.auth.login.LoginException;
@Service
public interface Bot {
void login() throws LoginException;
JDA getInstance();
void shutdown();
}

View File

@@ -0,0 +1,10 @@
package dev.sheldan.abstracto.service;
import org.springframework.stereotype.Service;
import javax.security.auth.login.LoginException;
@Service
public interface Startup {
public void startBot() throws LoginException;
}