@ethersphere/swarm-cli
Version:
CLI tool for Bee
17 lines (13 loc) • 500 B
text/typescript
import { GroupCommand } from 'furious-commander'
import { Buy } from './buy'
import { Create } from './create'
import { Dilute } from './dilute'
import { Extend } from './extend'
import { List } from './list'
import { Show } from './show'
import { Topup } from './topup'
export class Stamp implements GroupCommand {
public readonly name = 'stamp'
public readonly description = 'Buy, list and show postage stamps'
public subCommandClasses = [List, Create, Extend, Buy, Show, Dilute, Topup]
}