1
2
3
4
5
6
import { sqlite } from "https://esm.town/v/std/sqlite?v=2";
export const createSqliteTable = await sqlite.execute(`create table if not exists kv(
key text unique,
value text
)`);