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