Files
core/pkg/analytics/handler.go
T
quiet-professional dc0ae8eb96
Build and Release Core / Test and Build (push) Successful in 5m26s
updated module name
2026-04-29 11:04:14 -04:00

14 lines
208 B
Go

package analytics
import (
"code.riskrancher.com/RiskRancher/core/pkg/domain"
)
type Handler struct {
Store domain.Store
}
func NewHandler(store domain.Store) *Handler {
return &Handler{Store: store}
}