8 lines
215 B
Dart
8 lines
215 B
Dart
import 'package:simplehelpertools/constants.dart';
|
|
|
|
String get CH_VERSION => HelperConsts.CH_VERSION;
|
|
|
|
Future<int> main(List<String> args) async {
|
|
print("Git Commit Helper\nVersion: ${CH_VERSION}");
|
|
return 0;
|
|
}
|