Cat Feeder  1.0.0
The Cat feeder project
Loading...
Searching...
No Matches
path_constants.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: paths_constants.py
14# CREATION DATE: 22-11-2025
15# LAST Modified: 14:51:12 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 constants used for the path handling.
21# // AR
22# +==== END CatFeeder =================+
23"""
24
25from typing import List
26
27# For Path creation variables
28PATH_KEY: str = "path"
29ENDPOINT_KEY: str = "endpoint"
30METHOD_KEY: str = "method"
31ALLOWED_METHODS: List[str] = [
32 "GET", "POST",
33 "PUT", "PATCH",
34 "DELETE", "HEAD",
35 "OPTIONS"
36]