@lionrockjs/central
Version:
Node.js MVC framework inspire from PHP Kohana Framework
26 lines (22 loc) • 604 B
JavaScript
export default class Noop {
static resolveFetchList(x, store, pathToFile){
console.log('running central adapter noop, resolveFetchList');
return true;
}
static dirname(){
console.log('running central adapter noop, dirname');
return './';
}
static async import(pathToFile, cacheId=0){
console.log('running central adapter noop, import');
return {};
}
static fileExists(pathToFile){
console.log('running central adapter noop, fileExists');
return false;
}
static process(){
console.log('running central adapter noop, process');
return {};
}
}