write basic OAuth driver

This commit is contained in:
2026-08-04 21:09:46 -04:00
parent 8a8ebcdeec
commit c37a433984
2 changed files with 30 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
package auth
import "net/http"
// this is usually served at /callback
func OAuthCallback(w http.ResponseWriter, r *http.Request) {
}