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

12 lines
229 B
Go

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