SetDefaultOrg saves the default org
(orgName string)
| 120 | |
| 121 | // SetDefaultOrg saves the default org |
| 122 | func (d DotRill) SetDefaultOrg(orgName string) error { |
| 123 | return d.Set(ConfigFilename, DefaultOrgConfigKey, orgName) |
| 124 | } |
| 125 | |
| 126 | // GetBackupDefaultOrg loads the backedup default org |
| 127 | func (d DotRill) GetBackupDefaultOrg() (string, error) { |
no test coverage detected