This commit is contained in:
Владимир Фёдоров 2022-04-01 22:33:10 +07:00
parent d0aaee4857
commit c8fb28dcf6
4 changed files with 13 additions and 1 deletions

2
.gitignore vendored
View File

@ -21,3 +21,5 @@
# Go workspace file
go.work
# Goland
.idea

View File

@ -1,3 +1,3 @@
# all_tg_bot
Бот подменяет @all на список участников чата
Бот подменяет @all на список участников чата

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module git.user-penguin.space/vladimir/all_tg_bot
go 1.18

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}