This repository has been archived on 2022-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
Segfautils/api/oauth.go
Midou36O 31556d3a6b
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Broken mess, got to fix.
2022-09-16 23:10:37 +01:00

16 lines
262 B
Go

package api
import (
"github.com/ProjectSegfault/segfautils/config"
)
var (
clientID = config.OAuthClientID()
clientSecret = config.OAuthClientSecret()
redirectURL = config.OAuthRedirectURL()
authURL = config.OAuthURL()
)
func LoginOAuth() {
}