mirror of
https://github.com/gogrlx/nats-server.git
synced 2026-04-02 03:38:42 -07:00
12 lines
177 B
Go
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
|
|
}
|