18 lines
463 B
Python
18 lines
463 B
Python
"""
|
|
Checkpoint system — Timeline + Checkpoint tree.
|
|
|
|
detect/checkpoint/
|
|
frames.py — frame image S3 upload/download
|
|
storage.py — Timeline + Checkpoint (Postgres + MinIO)
|
|
replay.py — replay (TODO: migrate to new model)
|
|
"""
|
|
|
|
from .storage import (
|
|
create_timeline,
|
|
get_timeline_frames,
|
|
get_timeline_frames_b64,
|
|
save_stage_output,
|
|
load_stage_output,
|
|
)
|
|
from .frames import save_frames, load_frames
|