Initial commit, pt. 44

This commit is contained in:
Dmitrii Okunev
2024-07-15 01:46:24 +01:00
parent 089befafc5
commit 806fb12032
6 changed files with 81 additions and 16 deletions

View File

@@ -14,7 +14,7 @@ type DestinationConfig struct {
}
type Config struct {
Server []Server `yaml:"servers"`
Streams map[StreamID]StreamConfig `yaml:"streams"`
Destinations map[DestinationID]DestinationConfig `yaml:"destinations"`
Servers []Server `yaml:"servers"`
Streams map[StreamID]*StreamConfig `yaml:"streams"`
Destinations map[DestinationID]*DestinationConfig `yaml:"destinations"`
}