/
/
/
1"""
2Webserver Controller for Music Assistant.
3
4Handles the built-in webserver that hosts the API, frontend, and authentication.
5"""
6
7from __future__ import annotations
8
9from .controller import WebserverController
10
11__all__ = ["WebserverController"]
12