feat: Add Echo web API and integrate NDI monitoring

This commit is contained in:
gari 2025-04-12 19:45:03 +02:00
parent 3f6d52f3bd
commit f6be41cb9e
7 changed files with 157 additions and 135 deletions

View file

@ -3,7 +3,9 @@ package config
import "github.com/ilyakaznacheev/cleanenv"
type Config struct {
Debug bool `toml:"debug" env:"DEBUG" env-default:"false"`
Debug bool `toml:"debug" env:"DEBUG" env-default:"false"`
ListenAddr string `toml:"listen" env:"LISTEN_ADDR" env-default:":8080"`
Pipeline Pipeline `toml:"pipeline"`
Outputs []Output `toml:"outputs"`
}