uplink/app/authentication/dummy_authenticator.go

12 lines
244 B
Go

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