uplink/internal/authentication/authenticator.go

10 lines
217 B
Go

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