GetOne retrieves user by id.
(ctx context.Context, id int)
| 37 | Create(ctx context.Context, name string) (id int, err error) |
| 38 | // GetOne retrieves user by id. |
| 39 | GetOne(ctx context.Context, id int) (name string, err error) |
| 40 | // GetList retrieves user list. |
| 41 | GetList(ctx context.Context) (names []string, err error) |
| 42 | // Update updates user by id. |
no outgoing calls