Link bookmarking tool built on aproto (early alpha)
1import { config } from "../config.ts"
2import { SessionData } from "./types.ts"
3
4import { useSession } from "vinxi/http"
5
6export async function getAuthSession() {
7 //deno-lint-ignore react-rules-of-hooks
8 return await useSession<SessionData>({
9 password: config.COOKIE_SECRET,
10 name: "sid",
11 })
12}