mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
13 lines
387 B
Go
13 lines
387 B
Go
package main
|
|
|
|
import (
|
|
"github.com/foomo/ContentServer/server"
|
|
"github.com/foomo/ContentServer/server/log"
|
|
)
|
|
|
|
func main() {
|
|
log.SetLogLevel(log.LOG_LEVEL_DEBUG)
|
|
//server.Run(":8080", "http://test.bestbytes/foomo/modules/Foomo.Page.Content/services/content.php")
|
|
server.RunSocketServer("http://test.bestbytes/foomo/modules/Foomo.Page.Content/services/content.php", "0.0.0.0:8081")
|
|
}
|