15 lines
414 B
Dart
15 lines
414 B
Dart
import 'package:oto_cli/cli/commands/command_install.dart';
|
|
import 'package:oto_cli/cli/commands/command_start.dart';
|
|
|
|
import 'package:oto_cli/cli/cli.dart';
|
|
import 'package:oto_cli/cli/commands/command_template.dart';
|
|
|
|
void main(List<String> arguments) async {
|
|
CLI.initialize('OTO', arguments, [
|
|
CommandTemplate(),
|
|
CommandInstall(),
|
|
CommandUninstall(),
|
|
CommandStart(),
|
|
CommandStop()
|
|
]);
|
|
}
|