summaryrefslogtreecommitdiffstats
path: root/aoc/template
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <tom@glootie.lan.tomvanderlee.com>2023-11-19 16:55:03 +0100
committerGravatar Tom van der Lee <tom@glootie.lan.tomvanderlee.com>2023-11-19 16:55:03 +0100
commit4147da1317c19fa61d6aa265e8370e63231f9207 (patch)
tree316925e780126c97fb10342e3175fd0e6b0aa3fb /aoc/template
download2023-4147da1317c19fa61d6aa265e8370e63231f9207.tar.gz
2023-4147da1317c19fa61d6aa265e8370e63231f9207.tar.bz2
2023-4147da1317c19fa61d6aa265e8370e63231f9207.zip
Initial commit
Diffstat (limited to 'aoc/template')
-rw-r--r--aoc/template/__init__.py16
-rw-r--r--aoc/template/example.txt0
-rw-r--r--aoc/template/input.txt0
3 files changed, 16 insertions, 0 deletions
diff --git a/aoc/template/__init__.py b/aoc/template/__init__.py
new file mode 100644
index 0000000..05b2b45
--- /dev/null
+++ b/aoc/template/__init__.py
@@ -0,0 +1,16 @@
1# -*- coding: utf-8 -*-
2from abc import ABC
3
4from aoc import BaseAssignment
5
6
7class Assignment(BaseAssignment, ABC):
8 pass
9
10
11class AssignmentOne(Assignment):
12 pass
13
14
15class AssignmentTwo(Assignment):
16 pass
diff --git a/aoc/template/example.txt b/aoc/template/example.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/aoc/template/example.txt
diff --git a/aoc/template/input.txt b/aoc/template/input.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/aoc/template/input.txt