9 lines
242 B
TypeScript
9 lines
242 B
TypeScript
|
|
import request from '@/utils/request'
|
|
|
|
/***************************************************** hello world ****************************************************/
|
|
export function getHelloWorld() {
|
|
return request.get(`carmi/hello_world`)
|
|
}
|
|
|