2023-11-13 12:04:27 +09:00
|
|
|
//go:build client
|
2023-11-13 11:35:52 +09:00
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"repositories.action2quare.com/ayo/gocommon/flagx"
|
|
|
|
|
"repositories.action2quare.com/ayo/houston/client"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
flagx.Parse()
|
|
|
|
|
|
|
|
|
|
hc, err := client.NewClient(true)
|
|
|
|
|
if err != nil {
|
|
|
|
|
panic(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hc.Start()
|
|
|
|
|
}
|