1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

20 lines
247 B
Go
Raw Normal View History

2017-05-16 13:39:59 +02:00
package main
2017-05-16 15:22:40 +02:00
import (
"log"
"net/http"
)
2017-05-16 13:39:59 +02:00
func main() {
printBanner()
2017-05-16 15:22:40 +02:00
// Load configuration
2017-05-16 16:00:01 +02:00
log.Println("Using configuration: ...")
2017-05-16 15:22:40 +02:00
2017-05-16 16:00:01 +02:00
// Serve static content
httpRegisterAssets()
2017-05-16 15:22:40 +02:00
// Start http server
http.ListenAndServe(":7340", nil)
2017-05-16 13:39:59 +02:00
}