update global gitignore and .mod file for folder go

This commit is contained in:
root 2026-06-12 01:34:08 +03:00
parent 2dd1213e09
commit 8dc80adb1f
3 changed files with 16 additions and 1 deletions

1
.gitignore vendored
View file

@ -1,3 +1,2 @@
.vscode
.env
go.mod

8
go/go.mod Normal file
View file

@ -0,0 +1,8 @@
module my-app
go 1.23.4
require (
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 // indirect
github.com/joho/godotenv v1.5.1 // indirect
)

8
go/tg/go.mod Normal file
View file

@ -0,0 +1,8 @@
module my-bot
go 1.23.4
require (
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 // indirect
github.com/joho/godotenv v1.5.1 // indirect
)