Begin to add commit helper

This commit is contained in:
zontreck 2024-11-27 15:35:14 -07:00
parent 5f89c7b214
commit 1df6517d16
8 changed files with 26 additions and 15 deletions

8
dart/bin/cz.dart Normal file
View file

@ -0,0 +1,8 @@
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;
}