mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
7 lines
233 B
TypeScript
7 lines
233 B
TypeScript
import { create } from './new.ts';
|
|
import { config } from './config.ts';
|
|
import { Command } from '../utils/mod.ts';
|
|
|
|
export const tribe = new Command('tribe', 'Create and manage tribes.')
|
|
.subcommand(create)
|
|
.subcommand(config);
|