9 lines
128 B
JavaScript
9 lines
128 B
JavaScript
|
|
//test
|
||
|
|
import {
|
||
|
|
post,
|
||
|
|
get
|
||
|
|
} from "../request.js"
|
||
|
|
export function apiTest(params){
|
||
|
|
return post("/api/content/edit", params)
|
||
|
|
}
|