9 lines
165 B
Go
9 lines
165 B
Go
package node
|
|
|
|
import (
|
|
"git.wzray.com/homelab/hivemind/internal/transport"
|
|
)
|
|
|
|
var (
|
|
healthcheckRoute = transport.NewRoute[struct{}, string]("/node/healthcheck")
|
|
)
|