constructor()

in lib/apis.ts [25:34]


    constructor(scope: cdk.Construct, id: string, props: ApiProps) {
        super(scope, id);

        this.props = props;

        this.adminApi = this.createApi('admin-api');
        this.channelsApi = this.createApi('channels-api');
        this.commonsApi = this.createApi('common-api');
        this.productsServicesApi = this.createApi('products-services-api');
    }