12 lines
153 B
Go
12 lines
153 B
Go
package main
|
|
|
|
import (
|
|
coordinator "git.saintnet.tech/tomecraft/tome_server"
|
|
)
|
|
|
|
func main() {
|
|
c := coordinator.NewCoordinator()
|
|
c.Start()
|
|
Serve(c)
|
|
}
|