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