oak-pay-business/es/features/Console.js

16 lines
313 B
JavaScript

import { Feature } from 'oak-frontend-base';
export default class Console extends Feature {
cache;
constructor(cache) {
super();
this.cache = cache;
}
getMode(allowUninitialized) {
return 'systemProvider';
}
async initialize() {
}
async destroy() {
}
}