auth

Paddy 2014-08-16 Parent:9a1e62c24903 Child:9fe684b33b3d

18:c4351b08c867 Go to Latest

auth/session.go

Remove info.go. Let's wait until we need it to implement stuff outside the spec, we already have plenty of extra-spec-ular stuff that we know we need.

History
1 package auth
3 import "net/http"
5 func validateSession(r *http.Request, c Context) error {
6 // TODO: return an error if the user does not have a valid session
7 return nil
8 }