mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-15 00:15:08 +01:00
19 lines
212 B
Go
19 lines
212 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("Starting!")
|
|
|
|
go serveLauncherHTML(":80")
|
|
go doEntranceServer(":53310")
|
|
go doSignServer(":53312")
|
|
|
|
for {
|
|
time.Sleep(1 * time.Second)
|
|
}
|
|
}
|