모듈 업데이트

This commit is contained in:
2024-07-29 17:50:33 +09:00
parent 3c96921703
commit 030fa658f5
3 changed files with 8 additions and 3 deletions

2
go.mod
View File

@ -11,7 +11,7 @@ require (
golang.org/x/text v0.14.0
google.golang.org/grpc v1.60.1
google.golang.org/protobuf v1.32.0
repositories.action2quare.com/ayo/gocommon v0.0.0-20240708060921-18d284a4ea85
repositories.action2quare.com/ayo/gocommon v0.0.0-20240729084947-8e3d6c28f024
)
require (

4
go.sum
View File

@ -175,3 +175,7 @@ howett.net/plist v1.0.0 h1:7CrbWYbPPO/PyNy38b2EB/+gYbjCe2DXBxgtOOZbSQM=
howett.net/plist v1.0.0/go.mod h1:lqaXoTrLY4hg8tnEzNru53gicrbv7rrk+2xJA/7hw9g=
repositories.action2quare.com/ayo/gocommon v0.0.0-20240708060921-18d284a4ea85 h1:+mUz2LcDkv406BsXpGJRCWdeWB2zqMHunkM0sLtRhI4=
repositories.action2quare.com/ayo/gocommon v0.0.0-20240708060921-18d284a4ea85/go.mod h1:XA8+hQtUNh956T+kAbJKkUtMl5HUWj83knvdBvvPS5s=
repositories.action2quare.com/ayo/gocommon v0.0.0-20240724094352-dd4928c8224a h1:bkByqPCRTrMUCH3CYZVvO8GSLgBBF0LnPUXnQdgv/Cc=
repositories.action2quare.com/ayo/gocommon v0.0.0-20240724094352-dd4928c8224a/go.mod h1:XA8+hQtUNh956T+kAbJKkUtMl5HUWj83knvdBvvPS5s=
repositories.action2quare.com/ayo/gocommon v0.0.0-20240729084947-8e3d6c28f024 h1:WdvW4BJHoBwXqNsfEgOAZai7L9iHqRCZ7PZL0cwOULE=
repositories.action2quare.com/ayo/gocommon v0.0.0-20240729084947-8e3d6c28f024/go.mod h1:XA8+hQtUNh956T+kAbJKkUtMl5HUWj83knvdBvvPS5s=

View File

@ -14,13 +14,14 @@ import (
"runtime/debug"
"strings"
"repositories.action2quare.com/ayo/gocommon"
"repositories.action2quare.com/ayo/gocommon/flagx"
"repositories.action2quare.com/ayo/gocommon/logger"
)
type HoustonServerWithHandler interface {
HoustonServer
RegisterHandlers(serveMux *http.ServeMux, prefix string) error
RegisterHandlers(serveMux gocommon.ServerMuxInterface, prefix string) error
}
type houstonHandler struct {
@ -45,7 +46,7 @@ func NewHoustonHandler() HoustonServerWithHandler {
}
}
func (h *houstonHandler) RegisterHandlers(serveMux *http.ServeMux, prefix string) error {
func (h *houstonHandler) RegisterHandlers(serveMux gocommon.ServerMuxInterface, prefix string) error {
config := loadServerConfig()
storagePath := config.StorageRoot
h.deployPath = path.Join(storagePath, sub_folder_name_deploys)