Setup day 4 command

This commit is contained in:
2025-12-08 11:30:50 -06:00
parent 6e3781be93
commit 5acf83e63d
5 changed files with 41 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import 'package:adventofcode2025/day1/command.dart' as day1;
import 'package:adventofcode2025/day2/command.dart' as day2;
import 'package:adventofcode2025/day3/command.dart' as day3;
import 'package:adventofcode2025/day4/command.dart' as day4;
import 'package:args/command_runner.dart';
@@ -9,5 +10,6 @@ void main(List<String> arguments) {
..addCommand(day1.Day1Command())
..addCommand(day2.Day2Command())
..addCommand(day3.Day3Command())
..addCommand(day4.Day4Command())
..run(arguments);
}