27117900eb
Complete architecture rewrite following go2rtc patterns: - pkg/ for pure logic (camdb, tester, probe, generate) - internal/ for application glue with Init() modules - Single HTTP server on :4567 with all endpoints - zerolog with password masking and memory ring buffer - Environment-based config only (no YAML files) API endpoints: /api/search, /api/streams, /api/test, /api/probe, /api/generate, /api/health, /api/log Dependencies: go2rtc v1.9.14, go-sqlite3, miekg/dns, zerolog
27 lines
810 B
Modula-2
27 lines
810 B
Modula-2
module github.com/eduard256/strix
|
|
|
|
go 1.26
|
|
|
|
require (
|
|
github.com/AlexxIT/go2rtc v1.9.14
|
|
github.com/mattn/go-sqlite3 v1.14.37
|
|
github.com/miekg/dns v1.1.72
|
|
github.com/rs/zerolog v1.34.0
|
|
)
|
|
|
|
require (
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/pion/randutil v0.1.0 // indirect
|
|
github.com/pion/rtcp v1.2.16 // indirect
|
|
github.com/pion/rtp v1.10.0 // indirect
|
|
github.com/pion/sdp/v3 v3.0.17 // indirect
|
|
github.com/sigurn/crc16 v0.0.0-20240131213347-83fcde1e29d1 // indirect
|
|
github.com/sigurn/crc8 v0.0.0-20220107193325-2243fe600f9f // indirect
|
|
golang.org/x/mod v0.32.0 // indirect
|
|
golang.org/x/net v0.49.0 // indirect
|
|
golang.org/x/sync v0.19.0 // indirect
|
|
golang.org/x/sys v0.40.0 // indirect
|
|
golang.org/x/tools v0.41.0 // indirect
|
|
)
|