package events import "github.com/fsnotify/fsnotify" type CIEvent struct { RunID uint64 } type FSEvent struct { Events map[string]fsnotify.Op } type Event struct { CIEvent FSEvent } type Listener interface { GetLatestRunID() (uint64, error) Subscribe() (<-chan Event, error) }