소스 검색

change port

root 5 년 전
부모
커밋
c1bf506c91
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      main.go

+ 2 - 2
main.go

@@ -4,7 +4,7 @@ import (
 	"./api"
 	"./settings"
 	"fmt"
-	//"net/http"
+	"net/http"
 	"os"
 	"time"
 	// "./schedule"
@@ -105,7 +105,7 @@ func main() {
 
 	api.PrintConsole("Server is listening")
 
-	http.ListenAndServe(":8888", nil)
+	http.ListenAndServe(":7777", nil)
 }
 
 func wekanRedirect(w http.ResponseWriter, r *http.Request){