From 4147da1317c19fa61d6aa265e8370e63231f9207 Mon Sep 17 00:00:00 2001 From: Tom van der Lee Date: Sun, 19 Nov 2023 16:55:03 +0100 Subject: Initial commit --- aoc/template/__init__.py | 16 ++++++++++++++++ aoc/template/example.txt | 0 aoc/template/input.txt | 0 3 files changed, 16 insertions(+) create mode 100644 aoc/template/__init__.py create mode 100644 aoc/template/example.txt create mode 100644 aoc/template/input.txt (limited to 'aoc/template') 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 @@ +# -*- coding: utf-8 -*- +from abc import ABC + +from aoc import BaseAssignment + + +class Assignment(BaseAssignment, ABC): + pass + + +class AssignmentOne(Assignment): + pass + + +class AssignmentTwo(Assignment): + pass diff --git a/aoc/template/example.txt b/aoc/template/example.txt new file mode 100644 index 0000000..e69de29 diff --git a/aoc/template/input.txt b/aoc/template/input.txt new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3