mirror of
https://github.com/stakater/Reloader.git
synced 2026-02-14 09:59:50 +00:00
15 lines
161 B
Go
15 lines
161 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/stakater/Reloader/internal/pkg/app"
|
|
)
|
|
|
|
func main() {
|
|
if err := app.Run(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
os.Exit(0)
|
|
}
|