Files
gallery/gallery/easel/route/api/__init__.py

9 lines
135 B
Python

from fastapi import FastAPI
from . import schedule, weather
def mount(app: FastAPI):
weather.mount(app)
schedule.mount(app)