import type { FreshContext } from "https://deno.land/x/fresh@1.7.3/server.ts"
export interface I_InfinityContext {
request_id: string
request_start_date: Date
user?: { name: string, email: string, image_path: string }
}
export type InfinityContext = FreshContext<I_InfinityContext>