12 lines
249 B
Go
12 lines
249 B
Go
|
package authentication
|
||
|
|
||
|
import (
|
||
|
"git.icedream.tech/icedream/uplink/internal/channels"
|
||
|
)
|
||
|
|
||
|
type DummyAuthenticator struct{}
|
||
|
|
||
|
func (authenticator *DummyAuthenticator) VerifyUsernameAndPassword(*channels.Channel, string, string) bool {
|
||
|
return true
|
||
|
}
|