import $post from "../lu/post.js" import $res from "../lu/response.js" import $api from "./api.js" export function yo(then) { $post({ url: $api('YO'), then: (response) => { $res({ response, then: (response) => { then(response) }, error: (res) => { uni.$lu.toast(res.message); } }) } }) }