Files
Erupe/main.go
Andrew Gutekanst 96ec589651 Initial commit
2019-12-19 21:53:28 +09:00

21 lines
229 B
Go

package main
import (
"fmt"
"io"
_ "time"
"github.com/Andoryuuta/Erupe/network"
)
func main() {
fmt.Println("Starting!")
go serveLauncherHTML(":80")
go doSignServer(":53312")
for {
time.Sleep(1 * time.Second)
}
}