import { Injectable } from '@nestjs/common'; import { AvailableInPlusVersion } from '@waha/core/exceptions'; import { ChannelCategory, ChannelCountry, ChannelView, } from '@waha/structures/channels.dto'; @Injectable() export class ChannelsInfoServiceCore { async getCountries(): Promise { throw new AvailableInPlusVersion(); } async getCategories(): Promise { throw new AvailableInPlusVersion(); } async getViews(): Promise { throw new AvailableInPlusVersion(); } }