diff --git a/.fleet/settings.json b/.fleet/settings.json new file mode 100644 index 0000000..b88a2e6 --- /dev/null +++ b/.fleet/settings.json @@ -0,0 +1,3 @@ +{ + "toolchains": [] +} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 0f63e2a..dcd0bc8 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ config.json .idea +.fleet diff --git a/examples/test.go b/examples/test.go index c697357..805974d 100644 --- a/examples/test.go +++ b/examples/test.go @@ -1,11 +1,12 @@ package main +// TODO: Import parent bot and turn this folder into mini programs. import ( "encoding/json" "fmt" "io/ioutil" "log" - "twitch/twitchbot" + "twitchbot" ) type Config struct { diff --git a/go.mod b/go.mod index 51f6e4f..8b1f02c 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/witer33/twitchbot -go 1.17 +go 1.20