16 lines
232 B
Go
16 lines
232 B
Go
|
|
//go:build !client && server
|
||
|
|
|
||
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"repositories.action2quare.com/ayo/gocommon/flagx"
|
||
|
|
"repositories.action2quare.com/ayo/houston/server"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
flagx.Parse()
|
||
|
|
|
||
|
|
svr := server.NewServer()
|
||
|
|
svr.Start()
|
||
|
|
}
|