Files
AstralCalendar/auth/oauth_callback.go
T
2026-08-06 10:08:07 -04:00

12 lines
188 B
Go

package auth
import (
"fmt"
"net/http"
)
// this is usually served at /callback
func OAuthCallback(w http.ResponseWriter, r *http.Request) {
fmt.Printf("Getting my OAuth callback")
}