10 lines
181 B
JavaScript
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",
|
|
});
|
|
};
|