UserGet returns record for a given user ID
(uid t.Uid)
| 43 | UserCreate(user *t.User) error |
| 44 | // UserGet returns record for a given user ID |
| 45 | UserGet(uid t.Uid) (*t.User, error) |
| 46 | // UserGetAll returns user records for a given list of user IDs |
| 47 | UserGetAll(ids ...t.Uid) ([]t.User, error) |
| 48 | // UserDelete deletes user record |
no outgoing calls