This commit is contained in:
2023-08-13 21:06:28 +07:00
parent 1e3f5eb91d
commit bdc89bea14
5 changed files with 53 additions and 4 deletions
+1
View File
@@ -12,4 +12,5 @@ type User struct {
type IStorage interface {
UpsertUser(ctx context.Context, user User) error
GetAllUsersByChatID(ctx context.Context, chatID string) ([]User, error)
Close()
}