Files
Reloader/internal/pkg/app/app.go
2018-07-12 16:16:46 +05:00

10 lines
169 B
Go

package app
import "github.com/stakater/Reloader/internal/pkg/cmd"
// Run runs the command
func Run() error {
cmd := cmd.NewReloaderCommand()
return cmd.Execute()
}