multiple libraries, add request and cookie

This commit is contained in:
2023-03-30 00:20:35 +08:00
parent ad8fe8fa85
commit 1d636cdc79
11 changed files with 143 additions and 23 deletions

10
lib/utility.js Normal file
View File

@ -0,0 +1,10 @@
import { getCookie, setCookie, deleteCookie } from "./utility/cookie";
import { get, post } from "./utility/request";
export {
getCookie,
setCookie,
deleteCookie,
get,
post
}