mirror of
https://github.com/pese-git/cherrypick.git
synced 2026-01-23 21:13:35 +00:00
9 lines
261 B
Dart
9 lines
261 B
Dart
import 'package:args/command_runner.dart';
|
|
import 'package:cherrypick_cli/src/commands/init_command.dart';
|
|
|
|
void main(List<String> args) {
|
|
final runner = CommandRunner('cherrypick_cli', 'CherryPick CLI')
|
|
..addCommand(InitCommand());
|
|
runner.run(args);
|
|
}
|