mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-15 08:25:09 +01:00
20 lines
242 B
Go
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)
|
|
}
|
|
}
|