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