actually do some OAuth

This commit is contained in:
2026-08-06 10:08:07 -04:00
parent 349ab612d6
commit c305b53f11
8 changed files with 78 additions and 15 deletions
+5 -2
View File
@@ -1,8 +1,11 @@
package auth
import "net/http"
import (
"fmt"
"net/http"
)
// this is usually served at /callback
func OAuthCallback(w http.ResponseWriter, r *http.Request) {
fmt.Printf("Getting my OAuth callback")
}