UNPKG

skailan-conversations

Version:

Servicio de conversaciones y mensajería para Skailan

11 lines 327 B
export class GetChannelById { channelRepository; constructor(channelRepository) { this.channelRepository = channelRepository; } async execute(request) { const { id, organizationId } = request; return this.channelRepository.findById(id); } } //# sourceMappingURL=GetChannelById.js.map