summaryrefslogtreecommitdiffstats
path: root/aoc/template/__init__.py
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@vanderlee.io>2025-12-01 09:53:01 +0100
commitd7e30321ae6ae4c82a8ab7455f6ce33afd719c67 (patch)
treee873d640f909ae3e247adc7661b7d954c8af3a26 /aoc/template/__init__.py
download2025-d7e30321ae6ae4c82a8ab7455f6ce33afd719c67.tar.gz
2025-d7e30321ae6ae4c82a8ab7455f6ce33afd719c67.tar.bz2
2025-d7e30321ae6ae4c82a8ab7455f6ce33afd719c67.zip
Initial commit
Diffstat (limited to 'aoc/template/__init__.py')
-rw-r--r--aoc/template/__init__.py16
1 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