type Event struct {
// contains filtered or unexported fields
}
type EventType int
const (
Heartbeat EventType = iota + 1
DevfileUpdated
)
type Notifier struct {
// contains filtered or unexported fields
}
func NewNotifier(ctx context.Context, fsys filesystem.Filesystem, devfilePath string, devfileFiles []string) (*Notifier, error)
func (n *Notifier) Routes() openapi.Routes