11 lines
277 B
Go
11 lines
277 B
Go
package host
|
|
|
|
import (
|
|
"git.wzray.com/homelab/hivemind/internal/transport"
|
|
"git.wzray.com/homelab/hivemind/internal/types"
|
|
)
|
|
|
|
var (
|
|
dnsRoute = transport.NewRoute[struct{}, types.HostState]("/host/dns")
|
|
nsRoute = transport.NewRoute[struct{}, types.HostState]("/host/ns")
|
|
)
|