• This project
    • Loading...
  • Sign in

万朱浩 / Venue-Ops

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Venue-Ops
  • ReportEngine
  • renderers
  • __init__.py
  • Add Comments · e267b1fc
    e267b1fc Browse Files
    马一丁 authored 2025-11-13 22:49:59 +0800
__init__.py 184 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9
"""
Report Engine渲染器集合。

目前仅提供 HTMLRenderer,未来可扩展为PDF/Markdown等输出。
"""

from .html_renderer import HTMLRenderer

__all__ = ["HTMLRenderer"]