UNPKG

@ethersphere/swarm-cli

Version:
13 lines (9 loc) 347 B
import { GroupCommand } from 'furious-commander' import { Print } from './print' import { Update } from './update' import { Upload } from './upload' export class Feed implements GroupCommand { public readonly name = 'feed' public readonly description = 'Upload, update and view feeds' public subCommandClasses = [Update, Upload, Print] }