NewDomain constructs a new Domain with given owning organization and name.
(org string, name string)
| 26 | |
| 27 | // NewDomain constructs a new Domain with given owning organization and name. |
| 28 | func NewDomain(org string, name string) Domain { |
| 29 | return Domain{ |
| 30 | Org: org, |
| 31 | Name: name, |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | // globally cached |
| 36 | var foundDefaultDomain string |
no outgoing calls
no test coverage detected