Cat Feeder  1.0.0
The Cat feeder project
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1r"""
2# +==== BEGIN CatFeeder =================+
3# LOGO:
4# ..............(..../\
5# ...............)..(.')
6# ..............(../..)
7# ...............\‍(__)|
8# Inspired by Joan Stark
9# source https://www.asciiart.eu/
10# animals/cats
11# /STOP
12# PROJECT: CatFeeder
13# FILE: __init__.py
14# CREATION DATE: 21-11-2025
15# LAST Modified: 20:1:1 24-01-2026
16# DESCRIPTION:
17# This is the backend server in charge of making the actual website work.
18# /STOP
19# COPYRIGHT: (c) Cat Feeder
20# PURPOSE: The folder in charge of grouping the endpoints by functionality.
21# The file to export every endpoints class
22# /STOP
23# // AR
24# +==== END CatFeeder =================+
25"""
26
27from .bonus import Bonus
28from .admin import AdminEndpoints
29from .token import TokenEndpoints
30from .front_end import FrontEndManager
31from .cat_endpoints import CatEndpoints
32from .user_endpoints import UserEndpoints
33from .testing_endpoints import TestingEndpoints
34__all__ = [
35 "Bonus",
36 "CatEndpoints",
37 "UserEndpoints",
38 "AdminEndpoints",
39 "TokenEndpoints",
40 "FrontEndManager",
41 "TestingEndpoints",
42]