I have a project using nestjs and I want to add it my service
I created a module just for bosta and this is my code
import Bosta from 'bosta';
@Injectable()
export class BostaService {
constructor(private bosta: Bosta) {
this.bosta = new Bosta('API_KEY');
}
async createShipment(shipmentData: any) {
return await this.bosta.deliveryStates;
}
}
I have a project using nestjs and I want to add it my service
I created a module just for bosta and this is my code