# Functions
No description provided by the author
# Interfaces
type DbGetterSetter interface { InsertChat(ctx context.Context, id, user string, chat int64, shift int) error DelUser(ctx context.Context, chat int64, user string) GetCount(ctx context.Context, chat int64) (int, error) GetChat(ctx context.Context, chat int64) ([]repo.ChatMember, error) }.