First release of open core
This commit is contained in:
13
pkg/adapters/handler.go
Normal file
13
pkg/adapters/handler.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package adapters
|
||||
|
||||
import (
|
||||
"epigas.gitea.cloud/RiskRancher/core/pkg/domain"
|
||||
)
|
||||
|
||||
type Handler struct {
|
||||
Store domain.Store
|
||||
}
|
||||
|
||||
func NewHandler(store domain.Store) *Handler {
|
||||
return &Handler{Store: store}
|
||||
}
|
||||
Reference in New Issue
Block a user