mirror of
https://github.com/yavook/kiwi-simple-metrics.git
synced 2024-11-22 15:42:59 +00:00
18 lines
343 B
Python
18 lines
343 B
Python
from typing import Iterator
|
|
|
|
from ..settings import SETTINGS
|
|
from ._report import Report, ReportData
|
|
|
|
|
|
def _hwdata() -> Iterator[ReportData]:
|
|
yield ReportData(
|
|
name="Foo",
|
|
value=69.42,
|
|
)
|
|
|
|
|
|
def external() -> Report | None:
|
|
return Report.aggregate(
|
|
settings=SETTINGS.external,
|
|
get_data=_hwdata,
|
|
)
|