a0-purchases
Version:
Lightweight subscription management for AI apps with auto-detecting providers
16 lines • 393 B
JavaScript
export class BasePlatformAdapter {
constructor() {
this.config = { debug: false };
}
// Default implementations that can be overridden
async fetchStoreProducts(_skus) {
return [];
}
async restore(_userId) {
// Default no-op implementation
}
dispose() {
// Default no-op implementation
}
}
//# sourceMappingURL=adapters.js.map