We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb6fca1 commit 961df90Copy full SHA for 961df90
src/global/index.global.ts
@@ -9,6 +9,19 @@ import "./dayjs.global";
9
import { isDev } from "./env.global";
10
import { join } from "path";
11
12
+function consoleNEXT() {
13
+ console.log(`
14
+
15
+ _ _________ ________
16
+ / | / / ____/ |/ /_ __/
17
+ / |/ / __/ | / / /
18
+/ /| / /___ / | / /
19
+/_/ |_/_____//_/|_|/_/
20
21
22
+ `);
23
+}
24
25
// 建立目录
26
function mkdirs() {
27
mkdirSync(DATA_DIR, { recursive: true });
@@ -42,6 +55,7 @@ function registerGlobal() {
42
55
}
43
56
44
57
export function register() {
58
+ consoleNEXT();
45
59
mkdirs();
46
60
registerStdLogger();
47
61
0 commit comments