fix: app port and check subscribe_plan_id

This commit is contained in:
ericprd
2025-02-26 22:50:13 +08:00
parent 0100134527
commit 46472d01fe
4 changed files with 11 additions and 8 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ func Router(apiRouter chi.Router) {
defer stop()
svr := &http.Server{
Addr: fmt.Sprintf(":%d", APP_PORT),
Addr: fmt.Sprintf(":%d", config.APP_PORT),
Handler: mainRouter,
}
-4
View File
@@ -1,4 +0,0 @@
package pkgconfig
const APP_PORT = 3000
const GRACEFULL_TIMEOUT = 20