package testhelper import ( "golang.org/x/oauth2" ) func NewConf(url string) *oauth2.Config { return &oauth2.Config{ ClientID: "CLIENT_ID", ClientSecret: "CLIENT_SECRET", RedirectURL: "REDIRECT_URL", Scopes: []string{"scope1", "scope2"}, } }