mirror of
https://github.com/usestrix/strix.git
synced 2026-09-14 14:19:09 +08:00
dbc427d816
Co-authored-by: Ahmed Allam <ahmed39652003@gmail.com>
9 lines
142 B
Python
9 lines
142 B
Python
"""Startup phase reporting."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Callable
|
|
|
|
|
|
StatusSink = Callable[[str], None]
|