mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-04-26 02:50:04 -04:00
7 lines
164 B
TypeScript
7 lines
164 B
TypeScript
import { t } from "elysia";
|
|
|
|
export const DbMetadata = t.Object({
|
|
createdAt: t.String({ format: "date-time" }),
|
|
updatedAt: t.String({ format: "date-time" }),
|
|
});
|