mirror of
https://github.com/stakater/Reloader.git
synced 2026-03-01 17:00:19 +00:00
12 lines
229 B
Go
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)
|
|
}
|