mirror of
https://github.com/lorsanstand/HomeOps-Hub.git
synced 2026-06-19 14:25:16 +03:00
12 lines
134 B
Go
12 lines
134 B
Go
package main
|
|
|
|
import (
|
|
"github.com/lorsanstand/HomeOps-Hub/hub/internal/app"
|
|
)
|
|
|
|
func main() {
|
|
start := app.NewApp()
|
|
|
|
start.Run()
|
|
}
|