liveh5-nuxt/app/api/prose.ts

9 lines
156 B
TypeScript
Raw Normal View History

2025-01-08 05:26:12 +00:00
import { getHttp } from './http'
export async function getProse() {
const http = getHttp()
return await http('/api/prose', {
method: 'GET',
})
}