snap/auth/auth.go

10 lines
130 B
Go
Raw Normal View History

2018-01-24 02:26:26 +00:00
package auth
2018-02-07 22:25:00 +00:00
import (
"net/http"
)
2018-01-24 02:26:26 +00:00
type AuthManager interface {
2018-02-07 22:25:00 +00:00
DoAuth(w http.ResponseWriter,r *http.Request) (string,bool)
2018-01-24 02:26:26 +00:00
}