12345678910111213141516171819202122232425262728293031 |
- "use strict";
- class ManifestPreparer {
- constructor(options) {
- this.recipes = options.recipes;
- this.download = options.download;
- }
- prepare() {
- console.dir(this.recipes);
- }
- unzip(source, files) {
- }
- untar(source, files) {
- }
- flash() {
- }
- updateAddresses(){
- }
- }
- module.exports = {ManifestPreparer};
|