UNPKG

@ethersphere/swarm-cli

Version:
30 lines (29 loc) 884 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Feed = void 0; const print_1 = require("./print"); const update_1 = require("./update"); const upload_1 = require("./upload"); class Feed { constructor() { Object.defineProperty(this, "name", { enumerable: true, configurable: true, writable: true, value: 'feed' }); Object.defineProperty(this, "description", { enumerable: true, configurable: true, writable: true, value: 'Upload, update and view feeds' }); Object.defineProperty(this, "subCommandClasses", { enumerable: true, configurable: true, writable: true, value: [update_1.Update, upload_1.Upload, print_1.Print] }); } } exports.Feed = Feed;