mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
import { Subcommand } from '../utils.ts';
|
|
import { init } from './init.ts';
|
|
|
|
export const remote: Record<string, Subcommand> = {
|
|
init: {
|
|
action: init,
|
|
description: 'Initialise a brand new Ditto remote.',
|
|
},
|
|
};
|