first commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import createAxios from "@/utils/request";
|
||||
|
||||
interface WebInfo {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
describe: string;
|
||||
logo: string;
|
||||
}
|
||||
|
||||
export const getWebInfo = () => {
|
||||
return createAxios<WebInfo>({
|
||||
url: "/index",
|
||||
method: "get",
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user