all repos — homestead @ 4c07535d9120fb999b0c008f1866972865f424f7

Code for my website

replace tozd/errors with Southclaws/fault

Alan Pearce
commit

4c07535d9120fb999b0c008f1866972865f424f7

parent

90a4ac43b915abb7a2949f4b5313b40d705b6071

1 file changed, 2 insertions(+), 3 deletions(-)

changed files
M internal/events/update.gointernal/events/update.go
@@ -2,7 +2,6 @@ package events
import ( "github.com/fsnotify/fsnotify" - "gitlab.com/tozd/go/errors" ) type CIEvent struct {
@@ -19,6 +18,6 @@ FSEvent
} type Listener interface { - GetLatestRunID() (uint64, errors.E) - Subscribe() (<-chan Event, errors.E) + GetLatestRunID() (uint64, error) + Subscribe() (<-chan Event, error) }