Removed logging functions
This commit is contained in:
parent
27909c4984
commit
1fa7a55d82
2
main.go
2
main.go
|
@ -2,7 +2,6 @@ package library
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"crypto/ed25519"
|
"crypto/ed25519"
|
||||||
"fmt"
|
|
||||||
library "git.ailur.dev/ailur/fg-library/v3"
|
library "git.ailur.dev/ailur/fg-library/v3"
|
||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
"time"
|
"time"
|
||||||
|
@ -66,7 +65,6 @@ func GetOAuthHostname(information *library.ServiceInitializationInformation) (st
|
||||||
}
|
}
|
||||||
|
|
||||||
func InitializeOAuth(oauth OAuthInformation, information *library.ServiceInitializationInformation) (oauthResponse OAuthResponse, pk ed25519.PublicKey, hostname string, err error) {
|
func InitializeOAuth(oauth OAuthInformation, information *library.ServiceInitializationInformation) (oauthResponse OAuthResponse, pk ed25519.PublicKey, hostname string, err error) {
|
||||||
fmt.Println("Initializing OAuth")
|
|
||||||
pk, err = GetPublicKey(information)
|
pk, err = GetPublicKey(information)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue