11 lines
223 B
Go
11 lines
223 B
Go
// FILE: src/internal/config/config.go
|
|
package config
|
|
|
|
type Config struct {
|
|
// Stream configurations
|
|
Streams []StreamConfig `toml:"streams"`
|
|
}
|
|
|
|
type MonitorConfig struct {
|
|
CheckIntervalMs int `toml:"check_interval_ms"`
|
|
} |