mirror of
https://github.com/lorsanstand/HomeOps-Hub.git
synced 2026-06-19 16:45:15 +03:00
14 lines
173 B
Go
14 lines
173 B
Go
package main
|
|
|
|
import (
|
|
"github.com/lorsanstand/HomeOps-Hub/agent/internal/app"
|
|
)
|
|
|
|
func main() {
|
|
start, err := app.NewApp()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
start.Run()
|
|
}
|