chore: init

This commit is contained in:
MoonLeeeaf
2024-05-10 21:14:50 +08:00
commit a376ead195
29 changed files with 3024 additions and 0 deletions

17
server_src/httpApi.js Normal file
View File

@@ -0,0 +1,17 @@
/*
* ©2024 满月叶
* Github: MoonLeeeaf
* 铃之椅 Node 服务端
*/
// 不得不说 express 太强了
const vals = require("./val")
const express = require("express")
let api = express()
api.use("/", express.static("ling_chair_http"))
api.use("/users_head/", express.static(vals.LINGCHAIR_DATA_DIR + "/users_head"))
module.exports = api