Files
Reloader/internal/pkg/handler/handler.go
T
2022-10-04 16:41:34 +01:00

12 lines
242 B
Go

package handler
import (
"github.com/stakater/Reloader/internal/pkg/util"
)
// ResourceHandler handles the creation and update of resources
type ResourceHandler interface {
Handle(isLeader bool) error
GetConfig() (util.Config, string)
}