@ethersphere/swarm-cli
Version:
CLI tool for Bee
13 lines (9 loc) • 347 B
text/typescript
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]
}