Files
nats-server/server/auth.go
Máximo Cuadros Ortiz 65ae9c16f2 extendable auth methods
2014-11-27 00:26:13 +01:00

12 lines
177 B
Go

// Copyright 2012-2014 Apcera Inc. All rights reserved.
package server
type Auth interface {
Check(c ClientAuth) bool
}
type ClientAuth interface {
GetOpts() *clientOpts
}