feat: add many bps

This commit is contained in:
2024-12-23 21:52:08 +09:00
commit a450604c13
43 changed files with 5218 additions and 0 deletions

17
src/WebServer.ts Normal file
View File

@ -0,0 +1,17 @@
import express from 'express'
export class WebServer {
private readonly app = express()
public WebServer () {
}
private initRoutes () {
}
public listen() {
this.app.listen()
}
}