diff --git a/example/Makefile b/example/Makefile index d6d1e96..750e88f 100644 --- a/example/Makefile +++ b/example/Makefile @@ -1,6 +1,12 @@ +.PHONY: clean build run + build: @echo "Building..." @go build -o bin/example-bot cmd/example-bot/main.go @echo "Finished script. Check bin directory." -run: - @bin/example-bot \ No newline at end of file +clean: + @echo "Cleaning up..." + @rm bin/example-bot + @echo "Done!" +run: build + @bin/example-bot diff --git a/example/go.mod b/example/go.mod index ec8966f..a976cda 100644 --- a/example/go.mod +++ b/example/go.mod @@ -3,5 +3,4 @@ module example-bot go 1.22.0 require github.com/joho/godotenv v1.5.1 - -require github.com/Amatsagu/Tempest v1.1.7-0.20240310145558-c48446d33797 +require github.com/Amatsagu/Tempest v1.2.0 diff --git a/example/go.sum b/example/go.sum index 77928e9..eceaae5 100644 --- a/example/go.sum +++ b/example/go.sum @@ -1,6 +1,4 @@ -github.com/Amatsagu/Tempest v1.1.7-0.20240309110700-da99bbed97db h1:ztyfq7rt+sjfNAlhwmUsxvte+ALyEIGSG59pTSpV1Ic= -github.com/Amatsagu/Tempest v1.1.7-0.20240309110700-da99bbed97db/go.mod h1:6pJb/I5+sg0g0bc78zRPVh7G5s1pL7FxCzGDoHlVugE= -github.com/Amatsagu/Tempest v1.1.7-0.20240310145558-c48446d33797 h1:QIAHr00H1UbOGLL76NRZM3L5qUJOX5HfbK661TdGwMs= -github.com/Amatsagu/Tempest v1.1.7-0.20240310145558-c48446d33797/go.mod h1:6pJb/I5+sg0g0bc78zRPVh7G5s1pL7FxCzGDoHlVugE= +github.com/Amatsagu/Tempest v1.2.0 h1:beLRJNona64e1putLBpbd7PrVZnBSeBTG8GD/uyjPak= +github.com/Amatsagu/Tempest v1.2.0/go.mod h1:6pJb/I5+sg0g0bc78zRPVh7G5s1pL7FxCzGDoHlVugE= github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4=