mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-12-08 16:27:31 +00:00
11 lines
197 B
Dart
11 lines
197 B
Dart
import 'package:args/command_runner.dart';
|
|
|
|
void main(List<String> args) {
|
|
final commandRunner = CommandRunner(
|
|
"cli",
|
|
"Configuration CLI for Spotube",
|
|
);
|
|
|
|
commandRunner.run(args);
|
|
}
|