This commit is contained in:
Bel LaPointe
2023-04-10 10:27:33 -06:00
parent 79c4d04509
commit d39498ff84
11 changed files with 281 additions and 19 deletions

View File

@@ -2,9 +2,9 @@ package server
import (
"fmt"
"local/oauth2"
"local/router"
"local/storage"
"gogs.inhome.blapointe.com/local/oauth2"
"gogs.inhome.blapointe.com/local/router"
"gogs.inhome.blapointe.com/local/storage"
"net/http"
"net/url"
"strings"

View File

@@ -2,8 +2,8 @@ package server
import (
"fmt"
"local/oauth2/oauth2server/config"
"local/router"
"gogs.inhome.blapointe.com/local/oauth2/oauth2server/config"
"gogs.inhome.blapointe.com/local/router"
"net/http"
)

View File

@@ -2,9 +2,9 @@ package server
import (
"fmt"
"local/oauth2/oauth2server/config"
"local/router"
"local/storage"
"gogs.inhome.blapointe.com/local/oauth2/oauth2server/config"
"gogs.inhome.blapointe.com/local/router"
"gogs.inhome.blapointe.com/local/storage"
"golang.org/x/time/rate"
)

View File

@@ -6,8 +6,8 @@ import (
"crypto/sha256"
"encoding/hex"
"fmt"
"local/oauth2/oauth2server/config"
"local/router"
"gogs.inhome.blapointe.com/local/oauth2/oauth2server/config"
"gogs.inhome.blapointe.com/local/router"
"net/http"
"github.com/google/uuid"

View File

@@ -1,7 +1,7 @@
package server
import (
"local/router"
"gogs.inhome.blapointe.com/local/router"
"net/http"
)