auth

Paddy 2014-08-01 Child:0aa843a306cd

1:7b9e0fc20256 Go to Latest

auth/session.go

Continue our descent to horribleness. Remove all the nonsense about "extensibility" and "clean separation of concerns", instead hardcoding connections to decisions. Remove all those "test" things that stopped passing.

History
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/session.go	Fri Aug 01 23:08:38 2014 -0400
     1.3 @@ -0,0 +1,7 @@
     1.4 +package oauth2
     1.5 +
     1.6 +import "net/http"
     1.7 +
     1.8 +func validateSession(r *http.Request) error {
     1.9 +	return nil
    1.10 +}