diff --git a/realize/projects.go b/realize/projects.go index 58d6a41..fb8c5f0 100644 --- a/realize/projects.go +++ b/realize/projects.go @@ -75,7 +75,10 @@ type BufferOut struct { Errors []string `json:"errors"` } -type Reload interface{ +type ProjectI interface{ + Setup() + Watch(chan os.Signal) + Run(string, chan Response,<-chan bool) Restart(FileWatcher,string,<-chan bool) }