A website for the ATmosphereConf
at b712e2ba37be83fa3a37698a4dea043603c5e32d 7 lines 247 B view raw
1import type { AstroCookies } from 'astro' 2import { createOAuthClient } from './oauth' 3 4// Create a request-scoped OAuth client with cookie-based storage 5export function getOAuthClient(cookies: AstroCookies) { 6 return createOAuthClient(cookies) 7}