mirror of
https://github.com/stakater/Reloader.git
synced 2026-02-14 18:09:50 +00:00
14 lines
160 B
Go
14 lines
160 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)
|
|
} |