Files
adventofcode2025/bin/adventofcode2025.dart

12 lines
370 B
Dart
Raw Normal View History

import 'package:adventofcode2025/day1/command.dart' as day1;
2025-12-04 09:41:32 -06:00
import 'package:adventofcode2025/day2/command.dart' as day2;
import 'package:args/command_runner.dart';
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-11-30 11:51:53 -06:00
..run(arguments);
2025-11-29 12:21:39 -06:00
}