mirror of
https://github.com/AlexxIT/go2rtc.git
synced 2025-09-27 04:36:12 +08:00
21 lines
334 B
Go
21 lines
334 B
Go
package main
|
|
|
|
import (
|
|
"github.com/AlexxIT/go2rtc/internal/api"
|
|
"github.com/AlexxIT/go2rtc/internal/app"
|
|
"github.com/AlexxIT/go2rtc/internal/hass"
|
|
"github.com/AlexxIT/go2rtc/internal/streams"
|
|
"github.com/AlexxIT/go2rtc/pkg/shell"
|
|
)
|
|
|
|
func main() {
|
|
app.Init()
|
|
streams.Init()
|
|
|
|
api.Init()
|
|
|
|
hass.Init()
|
|
|
|
shell.RunUntilSignal()
|
|
}
|