snap/auth/auth.go

8 lines
109 B
Go
Raw Normal View History

2018-01-24 02:26:26 +00:00
package auth
import "net/http"
type AuthManager interface {
DoAuth(h http.HandlerFunc) http.HandlerFunc
}