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: 11-10-2025
15# LAST Modified: 14:53:23 19-12-2025
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 file in charge of referencing the python files required for the server in a way that can be imported as a library as well as called directly.
21# // AR
22# +==== END CatFeeder =================+
23"""
24
25
26from .utils import CONST
27from .http_codes import HCI, HttpCodes
28from .server import Server
29from .core import FinalClass
30
31__all__ = [
32 "HCI",
33 "HttpCodes",
34 "CONST",
35 "Server",
36 "FinalClass"
37]