feat(engines) default loader emulating
This commit is contained in:
13
src/Views/DefaultLoader.js
Normal file
13
src/Views/DefaultLoader.js
Normal file
@@ -0,0 +1,13 @@
|
||||
export default class DefaultLoader {
|
||||
constructor(filepath) {
|
||||
this.content = filepath;
|
||||
}
|
||||
|
||||
async load() {
|
||||
return this.content;
|
||||
}
|
||||
|
||||
parse(data = null) {
|
||||
return this.content;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user