| 25 | ) |
| 26 | |
| 27 | type Kind interface { |
| 28 | GetKindsByNames(ctx context.Context, names ...string) ([]model.Kind, error) |
| 29 | GetKindsByIDs(ctx context.Context, ids ...int32) ([]model.Kind, error) |
| 30 | UpsertKind(ctx context.Context, name string) (model.Kind, error) |
| 31 | } |
| 32 | |
| 33 | func (s *BloodhoundDB) GetKindsByNames(ctx context.Context, names ...string) ([]model.Kind, error) { |
| 34 | var ( |
no outgoing calls
no test coverage detected