mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 17:02:55 +08:00
29 lines
511 B
Python
29 lines
511 B
Python
from .types import (
|
|
Nothing,
|
|
GroupCount,
|
|
GroupData,
|
|
GroupedCounts,
|
|
GroupedData,
|
|
ProcessCounts,
|
|
ProcessData,
|
|
ProcessStatistics,
|
|
LaggardCounts,
|
|
LaggardData,
|
|
LaggardStatistics,
|
|
ReportMetaType,
|
|
)
|
|
|
|
analytics_types = [
|
|
Nothing,
|
|
GroupCount,
|
|
GroupData,
|
|
GroupedCounts,
|
|
GroupedData,
|
|
ProcessCounts,
|
|
ProcessData,
|
|
ProcessStatistics,
|
|
LaggardCounts,
|
|
LaggardData,
|
|
LaggardStatistics,
|
|
ReportMetaType,
|
|
]
|