Files
TgBot/domain/admin/models/models.go
2026-05-02 18:08:46 +03:00

15 lines
173 B
Go

package models
import (
"errors"
)
var (
ErrNotAdmin = errors.New("user is not admin")
)
type Admin struct {
UserID int64 `db:"user_id"`
Role string `db:"role"`
}