Files
codex/codex-rs/thread-store/BUILD.bazel
Tom dae56994da ThreadStore interface (#17659)
Introduce a ThreadStore interface for mediating access to the filesystem
(rollout jsonl files + sqlite db) based thread storage.

In later PRs we'll move the existing fs code behind a "local"
implementation of this ThreadStore interface.

This PR should be a no-op behaviorally, it only introduces the
interface.
2026-04-14 13:51:00 -07:00

7 lines
127 B
Python

load("//:defs.bzl", "codex_rust_crate")
codex_rust_crate(
name = "thread-store",
crate_name = "codex_thread_store",
)