Files
wagoo-douy3/src/api/config.js
2026-03-06 13:41:22 +08:00

10 lines
181 B
JavaScript

import request from "../utils/request";
import { CONFIG_INFO } from "./url";
export const getConfig = () => {
return request({
url: CONFIG_INFO,
method: "post",
});
};