mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-16 23:02:04 +00:00
refactor: scope workspace package names
This commit is contained in:
parent
f5e7ec943c
commit
1246e374a8
7 changed files with 16 additions and 12 deletions
|
|
@ -3,12 +3,12 @@ use std::io::Write;
|
|||
use clap::{Args, Parser, Subcommand};
|
||||
use reqwest::blocking::Client as HttpClient;
|
||||
use reqwest::Method;
|
||||
use sandbox_daemon::router::{
|
||||
use sandbox_daemon_core::router::{
|
||||
AgentInstallRequest, AppState, AuthConfig, CreateSessionRequest, MessageRequest,
|
||||
PermissionReply, PermissionReplyRequest, QuestionReplyRequest,
|
||||
};
|
||||
use sandbox_daemon::router::{AgentListResponse, AgentModesResponse, CreateSessionResponse, EventsResponse};
|
||||
use sandbox_daemon::router::build_router;
|
||||
use sandbox_daemon_core::router::{AgentListResponse, AgentModesResponse, CreateSessionResponse, EventsResponse};
|
||||
use sandbox_daemon_core::router::build_router;
|
||||
use serde::Serialize;
|
||||
use serde_json::Value;
|
||||
use thiserror::Error;
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ use axum::response::{IntoResponse, Response, Sse};
|
|||
use axum::routing::{get, post};
|
||||
use axum::Json;
|
||||
use axum::Router;
|
||||
use error::{AgentError as AgentErrorPayload, ProblemDetails, SandboxError};
|
||||
use sandbox_daemon_error::{AgentError as AgentErrorPayload, ProblemDetails, SandboxError};
|
||||
use futures::stream;
|
||||
use schemars::JsonSchema;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue