NewUserConfig returns a new, empty UserConfig.
()
| 14 | |
| 15 | // NewUserConfig returns a new, empty UserConfig. |
| 16 | func NewUserConfig() *UserConfig { |
| 17 | return &UserConfig{ |
| 18 | Repos: make(map[string]*RepoConfig), |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | // ParseUserConfig will return an UserConfig parsed from the given data. No |
| 23 | // additional validation is done. |
no outgoing calls
no test coverage detected