mirror of
https://github.com/go-micro/go-micro.git
synced 2025-03-17 20:28:06 +02:00
13 lines
206 B
Go
13 lines
206 B
Go
package rabbitmq
|
|
|
|
type ExternalAuthentication struct {
|
|
}
|
|
|
|
func (auth *ExternalAuthentication) Mechanism() string {
|
|
return "EXTERNAL"
|
|
}
|
|
|
|
func (auth *ExternalAuthentication) Response() string {
|
|
return ""
|
|
}
|