🎨 收尾

This commit is contained in:
BTMuli
2023-06-19 08:52:33 +08:00
parent 44f715f4e1
commit 59b59d3e7c
4 changed files with 8 additions and 9 deletions

View File

@@ -8,7 +8,7 @@
// tauri
import { app, fs, path } from "@tauri-apps/api";
// utils
import TGSqlite from "./TGSqlite";
import TGSqlite from "../plugins/Sqlite";
/**
* @description 时间戳转换为日期

View File

@@ -6,7 +6,7 @@
*/
// utils
import TGSqlite from "../../utils/TGSqlite";
import TGSqlite from "../../plugins/Sqlite";
// request
import { getCookieTokenBySToken } from "./getCookieToken";
import { getTokensByLoginTicket } from "./getTokens";

View File

@@ -8,7 +8,7 @@
import { getAnnoCard } from "./getAnnoCard";
import { getRequestHeader, getRequestSignHeader } from "./getRequestHeader";
import { parseAnnoContent } from "./parseAnno";
import { transCookie, getServerByUid } from "./tools";
import { getServerByUid } from "./tools";
const TGUtils = {
Anno: {
@@ -20,7 +20,6 @@ const TGUtils = {
getSignHeader: getRequestSignHeader,
},
Tools: {
transCookie,
getServerByUid,
},
};