Files
Erupe/main.go
2019-12-24 00:20:35 +09:00

20 lines
242 B
Go

package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("Starting!")
go serveLauncherHTML(":80")
go doEntranceServer(":53310")
go doSignServer(":53312")
go doChannelServer(":54001")
for {
time.Sleep(1 * time.Second)
}
}