init first

This commit is contained in:
2025-11-24 03:52:19 +08:00
parent 125e519989
commit 21b56d0948
26 changed files with 7266 additions and 125 deletions

21
backend/src/test/daily.ts Normal file
View File

@@ -0,0 +1,21 @@
import { app } from './common.ts'
// delete
// app.call({
// path: 'daily',
// key: 'delete',
// payload: {
// id: 'fqwoaqawhkfy'
// }
// }).then(res => {
// console.log('删除结果:', res.body)
// })
// randoms
app.call({
path: 'daily',
key: 'random'
}).then((res) => {
console.log('Daily Questions:', res.body);
})