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
View File
@@ -21,3 +21,5 @@
# Go workspace file
go.work
# Goland
.idea
+1 -1
View File
@@ -1,3 +1,3 @@
# all_tg_bot
Бот подменяет @all на список участников чата
Бот подменяет @all на список участников чата
+3
View File
@@ -0,0 +1,3 @@
module git.user-penguin.space/vladimir/all_tg_bot
go 1.18
+7
View File
@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}