package store import ( "errors" ) var ( ErrChatNotFound = errors.New("chat not found") ErrNilChatID = errors.New("chat id cannot be nil") )