A website for the ATmosphereConf
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 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}