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: 15-11-2025
15# LAST Modified: 14:51:22 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: This is the redis interface meant to be used by the sql library so that it can ligthen the weight on the running database of the project.
21# // AR
22# +==== END CatFeeder =================+
23"""
24
25from .redis_instance import RedisCaching
26from .redis_args import RedisArgs, build_redis_args
27from . import redis_constants as REDIS_CONST
28
29__all__ = [
30 "RedisCaching",
31 "RedisArgs",
32 "build_redis_args",
33 "REDIS_CONST"
34]