refactor: move domain structure and mapper

This commit is contained in:
2026-04-14 19:48:16 +03:00
parent 76fe95400c
commit 0b955bb714
11 changed files with 111 additions and 58 deletions
+12
View File
@@ -0,0 +1,12 @@
package hub_service
import (
"github.com/lorsanstand/HomeOps-Hub/internal/domain"
"github.com/rs/zerolog"
)
type HubService struct {
log zerolog.Logger
}
func NewHubService(request domain.RegisterAgentRequest)