Setup day 4 command
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user