blob: 4a5a0f2708137e812669d0bc1b5b9cf3c02462bf [file] [log] [blame]
Philipp Le84173f62022-04-19 22:27:12 +02001# SPDX-License-Identifier: MPL-2.0
2# Copyright (c) 2022 Philipp Le <philipp@philipple.de>.
3# This Source Code Form is subject to the terms of the Mozilla Public
4# License, v. 2.0. If a copy of the MPL was not distributed with this
5# file, You can obtain one at https://mozilla.org/MPL/2.0/.
6
7from .base import Group
8
9
10class Ch02Group(Group):
11 NAME = 'Chapter 02'
Philipp Lec2a590b2022-04-26 21:31:47 +020012
13
14class Ch03Group(Group):
15 NAME = 'Chapter 03'
Philipp Le83e96b62022-05-01 17:36:30 +020016
17
18class Ch04Group(Group):
19 NAME = 'Chapter 04'
Philipp Le8aaf4232022-05-02 22:45:27 +020020
21
22class Ch05Group(Group):
23 NAME = 'Chapter 05'
Philipp Le23c0ae42022-05-11 01:24:40 +020024
25
26class Ch06Group(Group):
27 NAME = 'Chapter 06'