9 lines
135 B
Python
9 lines
135 B
Python
from fastapi import FastAPI
|
|
|
|
from . import schedule, weather
|
|
|
|
|
|
def mount(app: FastAPI):
|
|
weather.mount(app)
|
|
schedule.mount(app)
|