refactor: scope workspace package names

This commit is contained in:
Nathan Flurry 2026-01-25 00:21:18 -08:00
parent f5e7ec943c
commit 1246e374a8
7 changed files with 16 additions and 12 deletions

View file

@ -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;

View file

@ -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};