10 lines
212 B
Go
10 lines
212 B
Go
|
package authentication
|
||
|
|
||
|
import (
|
||
|
"git.icedream.tech/icedream/uplink/app/channels"
|
||
|
)
|
||
|
|
||
|
type Authenticator interface {
|
||
|
VerifyUsernameAndPassword(channel *channels.Channel, username string, password string) bool
|
||
|
}
|