This commit is contained in:
Mr Swift
2023-12-09 21:31:05 +03:30
parent 54e43a2d8a
commit e628cf6156
7 changed files with 391 additions and 37 deletions
+2
View File
@@ -24,6 +24,7 @@ function init() {
app.use(express.json())
app.use(express.urlencoded({ extended: true }))
app.use(fileUpload())
console.log('🟢 ~ Node Server is running ')
// load plugins
// getVerityToken()
@@ -50,6 +51,7 @@ function init() {
app.use(isDev ? '/api' : '', router)
return app
}