|
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() {
|
|
}
|
|
}
|