mash-server/src/mash/core/feature.py

10 lines
200 B
Python
Raw Normal View History

from fastapi import FastAPI
class Feature:
def __init__(self, feature_id: str) -> None:
self.integration_id = feature_id
def add_routes(self, server: FastAPI) -> None:
pass