Files
Reloader/internal/pkg/app/app.go
2026-01-10 13:42:10 +01:00

10 lines
177 B
Go

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