Initial commit

This commit is contained in:
Andrew Gutekanst
2019-12-19 21:53:28 +09:00
parent fc5b1ac3b5
commit 96ec589651
12 changed files with 566 additions and 0 deletions

20
main.go Normal file
View File

@@ -0,0 +1,20 @@
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)
}
}