Initial ORION Telemetry service

This commit is contained in:
Lyra
2026-07-11 18:08:12 +08:00
commit 5e54a0aaed
8 changed files with 284 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
package main
import (
"github.com/lyra/orion-telemetry/internal/config"
orionhttp "github.com/lyra/orion-telemetry/internal/http"
)
func main() {
cfg := config.Load()
router := orionhttp.NewRouter()
router.Run(":" + cfg.Port)
}