|
|
@ -3,6 +3,7 @@ import express from 'express' |
|
|
|
import { authRoutes } from './routes/auth.js' |
|
|
|
import { debugRoutes } from './routes/control.js' |
|
|
|
import { oreRoutes } from './routes/ore.js' |
|
|
|
import { pointRoutes } from './routes/point.js' |
|
|
|
import { initWebSocketServer } from './utils/websocket.js' |
|
|
|
|
|
|
|
const app = express() |
|
|
@ -20,3 +21,4 @@ initWebSocketServer() |
|
|
|
debugRoutes(app) |
|
|
|
authRoutes(app) |
|
|
|
oreRoutes(app) |
|
|
|
pointRoutes(app) |