make boosts work woo

This commit is contained in:
tsmethurst 2021-04-21 18:13:28 +02:00
commit 5f61016cb2
21 changed files with 616 additions and 106 deletions

View file

@ -32,9 +32,9 @@ import (
const (
// AuthSignInPath is the API path for users to sign in through
AuthSignInPath = "/auth/sign_in"
AuthSignInPath = "/auth/sign_in"
// OauthTokenPath is the API path to use for granting token requests to users with valid credentials
OauthTokenPath = "/oauth/token"
OauthTokenPath = "/oauth/token"
// OauthAuthorizePath is the API path for authorization requests (eg., authorize this app to act on my behalf as a user)
OauthAuthorizePath = "/oauth/authorize"
)