Archived
1
0
This repository has been archived on 2022-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
ffmpeger/config/struct.go

12 lines
245 B
Go

package config
// Config represents whole configuration file structure.
type Config struct {
NATS Nats `yaml:"nats"`
}
// Nats represents NATS connection configuration.
type Nats struct {
ConnectionString string `yaml:"connection_string"`
}