This commit is contained in:
2025-06-21 11:09:58 +08:00
parent 8891b196ba
commit a150cbc533
11 changed files with 332 additions and 129 deletions

View File

@@ -0,0 +1,14 @@
import { app, xhsServices } from '@kevisual/xhs/app.ts';
app
.route({
path: 'note',
key: 'create',
})
.define(async (ctx) => {
const client = xhsServices.getClient();
const res = await client.c
if (res.code === 0) {
}
})
.addTo(app);

View File

@@ -0,0 +1 @@
import './create-note.ts'