moonraker: add announcements to core components
Bump Moonraker's the API version to 1.0.2 with the addition of new endpoints. Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
b1cc766576
commit
3b208c6889
|
@ -42,12 +42,12 @@ if TYPE_CHECKING:
|
|||
FlexCallback = Callable[..., Optional[Coroutine]]
|
||||
_T = TypeVar("_T")
|
||||
|
||||
API_VERSION = (1, 0, 1)
|
||||
API_VERSION = (1, 0, 2)
|
||||
|
||||
CORE_COMPONENTS = [
|
||||
'dbus_manager', 'database', 'file_manager', 'klippy_apis',
|
||||
'machine', 'data_store', 'shell_command', 'proc_stats',
|
||||
'job_state', 'job_queue', 'http_client'
|
||||
'job_state', 'job_queue', 'http_client', 'announcements'
|
||||
]
|
||||
|
||||
SENTINEL = SentinelClass.get_instance()
|
||||
|
|
Loading…
Reference in New Issue