mirror of
https://github.com/lorsanstand/HomeOps-Hub.git
synced 2026-09-18 15:08:21 +03:00
13 lines
216 B
Go
13 lines
216 B
Go
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)
|