import { CliBranch } from '@alwaysai/alwayscli';
import { deviceList } from './list';
import { deviceConnect } from './connect';
import { deviceClean } from './clean';

export const device = CliBranch({
  name: 'device',
  description: 'Commands to work with alwaysAI devices.',
  subcommands: [deviceList, deviceConnect, deviceClean]
});
