()
| 68 | } |
| 69 | |
| 70 | func (d Domain) String() string { |
| 71 | switch d { |
| 72 | case Person: |
| 73 | return "Person" |
| 74 | case Group: |
| 75 | return "Group" |
| 76 | case Org: |
| 77 | return "Org" |
| 78 | } |
| 79 | return fmt.Sprintf("Domain%d", int(d)) |
| 80 | } |
nothing calls this directly
no outgoing calls
no test coverage detected