initial commit

This commit is contained in:
2025-12-31 15:33:16 -05:00
commit 89f2114b06
51 changed files with 4779 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package store
import (
"errors"
)
var (
ErrChatNotFound = errors.New("chat not found")
ErrNilChatID = errors.New("chat id cannot be nil")
)