uplink/internal/authentication/authenticator.go

10 lines
217 B
Go
Raw Normal View History

2018-04-10 11:48:51 +00:00
package authentication
import (
"git.icedream.tech/icedream/uplink/internal/channels"
)
type Authenticator interface {
VerifyUsernameAndPassword(channel *channels.Channel, username string, password string) bool
}