Init bot go.mod project and added queue system for bot actions handling

This commit is contained in:
2026-01-24 00:20:36 +03:00
parent 30c41d630e
commit 02039a14bd
3 changed files with 45 additions and 0 deletions

5
bot/queue/bot_action.go Normal file
View File

@@ -0,0 +1,5 @@
package queue
import "context"
type BotAction func(ctx context.Context)