CreateReference returns a new reference string in the form SU: .
(id string)
| 56 | |
| 57 | // CreateReference returns a new reference string in the form SU:<id>. |
| 58 | func (c *UsersClient) CreateReference(id string) string { |
| 59 | return fmt.Sprintf("SU:%s", id) |
| 60 | } |
| 61 | |
| 62 | // CreateUserReference is a convenience helper not to require a client. |
| 63 | var CreateUserReference = (&UsersClient{}).CreateReference |
no outgoing calls