feat: init db

This commit is contained in:
Julien Calixte
2026-02-08 23:26:52 +01:00
parent ab1be0efb6
commit 2312240d10
9 changed files with 109 additions and 270 deletions

8
src/data/note.ts Normal file
View File

@@ -0,0 +1,8 @@
export type Note = {
did: string
rkey: string
title: string
content: string
publishedAt: Date
createdAt: Date
}