(ctx context.Context, role *domain.Role, menuIds []int, apiIds []int)
| 10 | |
| 11 | type RoleRepository interface { |
| 12 | CreateRole(ctx context.Context, role *domain.Role, menuIds []int, apiIds []int) error |
| 13 | GetRoleById(ctx context.Context, id int) (*domain.Role, error) |
| 14 | UpdateRole(ctx context.Context, role *domain.Role) error |
| 15 | DeleteRole(ctx context.Context, id int) error |
no outgoing calls
no test coverage detected