Log ID/Secret

This commit is contained in:
idanoo 2023-01-30 12:05:30 +13:00
parent a2761fac3e
commit 5c1da4a904
Signed by: idanoo
GPG key ID: 387387CDBC02F132

View file

@ -18,6 +18,10 @@ func registerApp() (string, string, error) {
if err != nil {
return "", "", err
}
fmt.Printf("client-id : %s\n", app.ClientID)
fmt.Printf("client-secret: %s\n", app.ClientSecret)
return app.ClientID, app.ClientSecret, nil
}