2022-08-03 14:24:51 -07:00
|
|
|
# These imports determine whether or not a user has the required dependencies
|
|
|
|
# to launch the optional dashboard API server.
|
|
|
|
# If any of these imports fail, the dashboard API server will not be launched.
|
|
|
|
# Please add important dashboard-api dependencies to this list.
|
|
|
|
|
2021-08-21 03:04:21 -05:00
|
|
|
# These checks have to come first because aiohttp looks
|
|
|
|
# for opencensus, too, and raises a different error otherwise.
|
|
|
|
import opencensus # noqa: F401
|
|
|
|
|
|
|
|
import prometheus_client # noqa: F401
|
|
|
|
|
|
|
|
import aiohttp # noqa: F401
|
|
|
|
import aiohttp.web # noqa: F401
|
|
|
|
import aiohttp_cors # noqa: F401
|
|
|
|
from aiohttp import hdrs # noqa: F401
|
|
|
|
from aiohttp.typedefs import PathLike # noqa: F401
|
|
|
|
from aiohttp.web import RouteDef # noqa: F401
|
2022-08-03 14:24:51 -07:00
|
|
|
import pydantic # noqa: F401
|