feat: trying to add hashes to scripts

This commit is contained in:
Max Richter
2026-01-10 13:03:13 +01:00
parent e65938ecc2
commit e55f787a29
79 changed files with 4209 additions and 720 deletions

11
utils.ts Normal file
View File

@@ -0,0 +1,11 @@
import { createDefine } from "fresh";
export interface State {
session: {
id: string;
name: string;
exp: number;
};
}
export const define = createDefine<State>();