2023-02-20 11:41:29 +03:00
|
|
|
"""Module containing FastAPI paths"""
|
|
|
|
|
2023-02-18 20:17:16 +03:00
|
|
|
import abc
|
|
|
|
|
|
|
|
from fastapi import FastAPI
|
|
|
|
|
|
|
|
|
|
|
|
class Paths(abc.ABC):
|
|
|
|
"""Abstract class for storing paths for FastAPI app"""
|
|
|
|
|
|
|
|
def __init__(self, app: FastAPI) -> None:
|
|
|
|
"""Abstract class for storing paths
|
|
|
|
for FastAPI app
|
|
|
|
|
|
|
|
Args:
|
|
|
|
app (FastAPI): Application object
|
|
|
|
"""
|
|
|
|
|
|
|
|
self.app = app
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def add_paths(self) -> None:
|
|
|
|
"""Add paths to the FastAPI application"""
|