import { signIn } from "https://deno.land/x/fathym_everything_as_code@v0.0.369/src/src.deps.ts";
Handles the sign-in request and process for the given OAuth configuration and redirects the client to the authorization URL.
Examples
Example 1
Example 1
import { signIn, createGitHubOAuthConfig } from "https://deno.land/x/deno_kv_oauth@$VERSION/mod.ts";
const oauthConfig = createGitHubOAuthConfig();
export async function handleSignIn(request: Request) {
return await signIn(request, oauthConfig);
}