package auth import ( "net/http" ) type AuthManager interface { DoAuth(w http.ResponseWriter,r *http.Request) (string,bool) }