File size: 285 Bytes
71b4454
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
Production preview workspace subsystem.

The package exposes the singleton preview_workspace used by the
builder pipeline and HTTP compatibility routes.
"""

from .workspace import PreviewWorkspace, preview_workspace

__all__ = [
    "PreviewWorkspace",
    "preview_workspace",
]