This repository has been archived on 2022-06-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2019-05-17 19:06:13 +05:00

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"`
}