summaryrefslogtreecommitdiff
path: root/2022/02/main.go
diff options
context:
space:
mode:
Diffstat (limited to '2022/02/main.go')
-rw-r--r--2022/02/main.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/2022/02/main.go b/2022/02/main.go
new file mode 100644
index 0000000..a694019
--- /dev/null
+++ b/2022/02/main.go
@@ -0,0 +1,19 @@
+package main
+
+import (
+ "context"
+
+ "mvinkio.online/aoc/2022/02/jankenpon"
+ "mvinkio.online/aoc/aoc"
+)
+
+// Boilerplate
+
+func main() {
+ aoc.RunDay(
+ context.TODO(),
+ aoc.NewScanCloser("2022/02/input.txt"),
+ aoc.ReadLines(jankenpon.Reader),
+ jankenpon.Solvers,
+ )
+}