RRC / src /racing_reports /reports /__init__.py
pablogrois's picture
Deploy MVP: API JSON + SPA + bundle/cache de artifacts CORE
e58615a
Raw
History Blame Contribute Delete
248 Bytes
from racing_reports.reports import block_zscore, post_match, pre_match
REPORT_GENERATORS = {
"pre_match": pre_match.generate,
"post_match": post_match.generate,
"block_zscore": block_zscore.generate,
}
__all__ = ["REPORT_GENERATORS"]