9 lines
200 B
Python
9 lines
200 B
Python
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
|