@ethersphere/swarm-cli
Version:
CLI tool for Bee
15 lines (11 loc) • 420 B
text/typescript
import { GroupCommand } from 'furious-commander'
import { List } from './list'
import { Show } from './show'
import { Enable } from './enable'
import { Disable } from './disable'
import { Status } from './status'
export class History implements GroupCommand {
public readonly name = 'history'
public readonly description = 'Get upload history'
public subCommandClasses = [List, Show, Enable, Disable, Status]
}