2023-11-13 12:04:27 +09:00
|
|
|
//go:build !client
|
2023-11-13 11:35:52 +09:00
|
|
|
|
2023-05-25 10:59:04 +09:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
2023-06-21 14:35:27 +09:00
|
|
|
"repositories.action2quare.com/ayo/gocommon/flagx"
|
2023-05-25 10:59:04 +09:00
|
|
|
"repositories.action2quare.com/ayo/houston/server"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func main() {
|
2023-06-21 14:35:27 +09:00
|
|
|
flagx.Parse()
|
2023-05-25 10:59:04 +09:00
|
|
|
|
2023-11-13 12:04:27 +09:00
|
|
|
svr := server.NewServer()
|
|
|
|
|
svr.Start()
|
2023-05-25 10:59:04 +09:00
|
|
|
}
|