database basically working

This commit is contained in:
metacryst
2026-01-11 03:47:36 -06:00
parent 463dd183f5
commit 13cdff7a5f
19 changed files with 389 additions and 210 deletions

View File

@@ -0,0 +1,17 @@
import { z } from 'zod'
export default class MemberInNetwork {
schema = z.object({
id: z.number(),
from: z.string(),
to: z.string(),
created: z.string()
})
.strict()
indices = null
constructor(indices) {
this.indices = indices
}
}