2025-11-30 11:46:59 -06:00
|
|
|
import 'package:adventofcode2025/day1/command.dart' as day1;
|
2025-12-04 09:41:32 -06:00
|
|
|
import 'package:adventofcode2025/day2/command.dart' as day2;
|
2025-12-04 14:57:15 -06:00
|
|
|
import 'package:adventofcode2025/day3/command.dart' as day3;
|
2025-12-08 11:30:50 -06:00
|
|
|
import 'package:adventofcode2025/day4/command.dart' as day4;
|
2025-11-30 11:08:31 -06:00
|
|
|
|
2025-11-30 11:46:59 -06:00
|
|
|
import 'package:args/command_runner.dart';
|
2025-11-30 11:08:31 -06:00
|
|
|
|
2025-11-29 12:21:39 -06:00
|
|
|
void main(List<String> arguments) {
|
2025-11-30 11:51:53 -06:00
|
|
|
CommandRunner("adventofcode2025", "Advent of Code 2025 solutions")
|
|
|
|
|
..addCommand(day1.Day1Command())
|
2025-12-04 09:41:32 -06:00
|
|
|
..addCommand(day2.Day2Command())
|
2025-12-04 14:57:15 -06:00
|
|
|
..addCommand(day3.Day3Command())
|
2025-12-08 11:30:50 -06:00
|
|
|
..addCommand(day4.Day4Command())
|
2025-11-30 11:51:53 -06:00
|
|
|
..run(arguments);
|
2025-11-29 12:21:39 -06:00
|
|
|
}
|