@davidbolaji/termii-node
Version:
Node.js SDK for Termii API – send SMS, voice, OTP, and manage messaging with ease.
12 lines (11 loc) • 323 B
JavaScript
import { EsimService } from "./EsimService";
/**
* SotelService is the entrypoint for all esim-related API services.
* It groups sub-services for better organization and reusability.
*/
export class SotelService {
constructor(http) {
this.http = http;
this.esim = new EsimService(this.http);
}
}