diff --git a/.drone.yml b/.drone.yml index da9d51c..4df842a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,8 +1,9 @@ kind: pipeline +type: docker name: default steps: - name: test - image: golang + image: golang:1.23 commands: - - go test \ No newline at end of file + - go test ./... \ No newline at end of file diff --git a/application/bot.go b/application/bot.go index c547062..81c3bd0 100644 --- a/application/bot.go +++ b/application/bot.go @@ -14,6 +14,7 @@ var prefix = os.Getenv("COMMAND_PREFIX") func init() { token := os.Getenv("DISCORD_TOKEN") + token = "ODgyNzI5OTg1MzgxNjUwNTEy.GEOiR0.MPRFc10hMG6RKLla4ic-gXP7oTKTFacbAFpapk" var err error s, err = discordgo.New("Bot " + token) if err != nil {