feat: Scaffolding bot

This commit is contained in:
2025-07-26 17:18:41 -07:00
parent 4acfd33eae
commit 8d3bcbc01d
10 changed files with 443 additions and 18 deletions
+2
View File
@@ -9,4 +9,6 @@ type Storer interface {
FetchAppState(ctx context.Context) (*AppState, error)
UpdateAppState(ctx context.Context, newState *AppState) error
AddChatID(ctx context.Context, chatID int64) error
FetchUserState(ctx context.Context) (*UserState, error)
UpdateUserState(ctx context.Context, newUserState *UserState) error
}