MCPcopy Create free account
hub / github.com/JaredStewart/coderlm / Session

Class Session

server/src/server/session.rs:15–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13
14#[derive(Debug, Clone, Serialize, Deserialize)]
15pub struct Session {
16 pub id: String,
17 pub project_path: PathBuf,
18 pub created_at: DateTime<Utc>,
19 pub last_active: DateTime<Utc>,
20 pub history: Vec<HistoryEntry>,
21}
22
23impl Session {
24 pub fn new(id: String, project_path: PathBuf) -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected