package authentication import ( "git.icedream.tech/icedream/uplink/app/channels" ) type DummyAuthenticator struct{} func (authenticator *DummyAuthenticator) VerifyUsernameAndPassword(*channels.Channel, string, string) bool { return true }