()
| 43 | ) |
| 44 | |
| 45 | func (k Kind) String() string { |
| 46 | switch k { |
| 47 | case KindOutlier: |
| 48 | return "KindOutlier" |
| 49 | case KindNew: |
| 50 | return "KindNew" |
| 51 | case KindOld: |
| 52 | return "KindOld" |
| 53 | default: |
| 54 | return "(unknown)" |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | // DoNotSendToOtherServers tells us not to send the event to other matrix |
| 59 | // servers. |
no outgoing calls