add scoresaber feed command and websocket impl
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 53s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 53s
This commit is contained in:
@ -1,5 +1,7 @@
|
||||
package cc.fascinated.bat;
|
||||
|
||||
import com.google.gson.Gson;
|
||||
import com.google.gson.GsonBuilder;
|
||||
import lombok.NonNull;
|
||||
import lombok.SneakyThrows;
|
||||
import lombok.extern.log4j.Log4j2;
|
||||
@ -14,6 +16,8 @@ import java.util.Objects;
|
||||
@SpringBootApplication()
|
||||
@Log4j2(topic = "Ember")
|
||||
public class BatApplication {
|
||||
public static Gson GSON = new GsonBuilder().create();
|
||||
|
||||
@SneakyThrows
|
||||
public static void main(@NonNull String[] args) {
|
||||
// Handle loading of our configuration file
|
||||
|
Reference in New Issue
Block a user