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