add all bot

This commit is contained in:
2023-08-13 20:22:15 +07:00
parent 116f4041fa
commit 2889f35a3d
11 changed files with 307 additions and 5 deletions
+11
View File
@@ -0,0 +1,11 @@
package bot
import (
"context"
"git.3crabs.ru/VLADIMIR/butler/internal/modules/messenger"
)
type IBot interface {
Process(ctx context.Context, msg messenger.Message) error
}