client와 server 빌드를 분리하고 client에는 node_exporter 통합

This commit is contained in:
2023-11-13 11:35:52 +09:00
parent 432cc68024
commit d43b83e761
15 changed files with 404 additions and 36 deletions

15
main_server.go Normal file
View File

@ -0,0 +1,15 @@
//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()
}