Adds getting config requirement to backend-client. I made a slash command to test it (not included in this PR): <img width="726" height="330" alt="Screenshot 2026-01-27 at 15 20 41" src="https://github.com/user-attachments/assets/97222e7c-5078-485a-a5b2-a6630313901e" />
10 lines
290 B
Rust
10 lines
290 B
Rust
mod client;
|
|
pub mod types;
|
|
|
|
pub use client::Client;
|
|
pub use types::CodeTaskDetailsResponse;
|
|
pub use types::CodeTaskDetailsResponseExt;
|
|
pub use types::ConfigFileResponse;
|
|
pub use types::PaginatedListTaskListItem;
|
|
pub use types::TaskListItem;
|
|
pub use types::TurnAttemptsSiblingTurnsResponse;
|