package authentication
import (
"git.icedream.tech/icedream/uplink/internal/channels"
)
type Authenticator interface {
VerifyUsernameAndPassword(channel *channels.Channel, username string, password string) bool
}