Pascal Ambrosini

Results 11 comments of Pascal Ambrosini

Here a working example: ``` package auth import ( "fmt" "net/http" "github.com/gorilla/sessions" "github.com/markbates/goth" "github.com/markbates/goth/gothic" "github.com/markbates/goth/providers/google" ) type AuthService struct { } func NewAuthService() *AuthService { return &AuthService{} } func (auth...