Adds config file (quanlib.ini) support.
[quanweb.git] / main / main.go
index d30f84b9e76138b41883797c91cb474d5761b786..b54712f7efaf7fbb0ffc80a4893527614cc61bc4 100644 (file)
@@ -3,6 +3,7 @@ package main
 import (
   "database/sql"
   "net/http"
+  "strconv"
 )
 
 // ============================================================================
@@ -17,5 +18,6 @@ func main() {
 
   http.HandleFunc("/", handler)
 
-  http.ListenAndServe(":8001", nil)
+  config := GetConfig()
+  http.ListenAndServe(":" + strconv.Itoa(config.port), nil)
 }