package auth
import "cls-server/internal/domain/admin"
type AuthRepository interface {
GetAdminByUsername(username string) (*admin.Admin, error)
}