liveh5-nuxt/app/api/prose.ts
2025-01-08 13:26:12 +08:00

9 lines
156 B
TypeScript

import { getHttp } from './http'
export async function getProse() {
const http = getHttp()
return await http('/api/prose', {
method: 'GET',
})
}