15 lines
335 B
JavaScript
15 lines
335 B
JavaScript
import { Feature } from 'oak-frontend-base';
|
|
export default class Sample extends Feature {
|
|
get(params) {
|
|
throw new Error('Method not implemented.');
|
|
}
|
|
action(action) {
|
|
throw new Error('Method not implemented.');
|
|
}
|
|
cache;
|
|
constructor(cache) {
|
|
super();
|
|
this.cache = cache;
|
|
}
|
|
}
|