Files
adventofcode2025/bin/adventofcode2025.dart

13 lines
319 B
Dart
Raw Normal View History

import 'package:adventofcode2025/day1/command.dart' as day1;
import 'package:args/command_runner.dart';
const help = 'help';
const dayNumber = 'day';
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())
..run(arguments);
2025-11-29 12:21:39 -06:00
}