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

16 lines
262 B
Go
Raw Normal View History

2022-09-17 03:40:37 +05:30
package api
2022-09-14 20:26:59 +05:30
import (
"github.com/ProjectSegfault/segfautils/config"
)
var (
clientID = config.OAuthClientID()
clientSecret = config.OAuthClientSecret()
2022-09-17 03:40:37 +05:30
redirectURL = config.OAuthRedirectURL()
authURL = config.OAuthURL()
2022-09-14 20:26:59 +05:30
)
func LoginOAuth() {
2022-09-17 03:40:37 +05:30
}