Cat Feeder  1.0.0
The Cat feeder project
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1"""
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: 05-01-2026
15# LAST Modified: 11:56:5 12-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: This is the module in charge of handling favicon images wether is regards the users or the admins.
21# // AR
22# +==== END CatFeeder =================+
23"""
24
25from .favicon_admin import FaviconAdmin
26from .favicon_user import FaviconUser
27from . import favicon_error_class as FAV_ERR
28
29__all__ = [
30 "FaviconAdmin",
31 "FaviconUser",
32 "FAV_ERR"
33]