mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-31 00:16:47 +01:00
15 lines
345 B
TypeScript
15 lines
345 B
TypeScript
import type {
|
|
Collaborator,
|
|
IFeatureCollaboratorsReadModel,
|
|
} from './types/feature-collaborators-read-model-type';
|
|
|
|
export class FakeFeatureCollaboratorsReadModel
|
|
implements IFeatureCollaboratorsReadModel
|
|
{
|
|
async getFeatureCollaborators(
|
|
feature: string,
|
|
): Promise<Array<Collaborator>> {
|
|
return [];
|
|
}
|
|
}
|