all repos — homestead @ 5193a9aa5b7f7784b9ca419afd6953020a8e53c0

Code for my website

internal/events/update.go (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
package events

import "github.com/fsnotify/fsnotify"

type Listener interface {
	Wait(chan<- Event, chan<- error) error
}

type Event struct {
	FileEvents []fsnotify.Event
	Revision   string
}