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: 17:36:54 07-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: File in charge of relaying the server components to the server class so that they can be imported.
21# // AR
22# +==== END CatFeeder =================+
23"""
24
25
26from . import constants as CONST
27from .password_handling import PasswordHandling
28from .oauth_authentication import OAuthAuthentication
29
30__all__ = [
31 "CONST",
32 "PasswordHandling",
33 "OAuthAuthentication"
34]