mirror of
https://github.com/lorsanstand/HomeOps-Hub.git
synced 2026-06-19 20:05:17 +03:00
12 lines
164 B
Go
12 lines
164 B
Go
package main
|
|
|
|
import "github.com/lorsanstand/HomeOps-Hub/internal/agent/app"
|
|
|
|
func main() {
|
|
start, err := app.NewApp()
|
|
if err != nil {
|
|
return
|
|
}
|
|
start.Run()
|
|
}
|