Skip to content

Commit

Permalink
Add derives to SessionId (#1382)
Browse files Browse the repository at this point in the history
* Fixes #1358
  • Loading branch information
flaub committed Jan 26, 2024
1 parent 383ab03 commit 83cf686
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bonsai/sdk/src/alpha.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
use std::{fs::File, path::Path};

use reqwest::{blocking::Client as BlockingClient, header};
use serde::{Deserialize, Serialize};
use thiserror::Error;

use self::responses::{
Expand Down Expand Up @@ -199,7 +200,7 @@ pub mod responses {
}

/// Proof Session representation
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct SessionId {
/// Session UUID
pub uuid: String,
Expand Down

1 comment on commit 83cf686

@vercel
Copy link

@vercel vercel bot commented on 83cf686 Jan 26, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.