Skip to content

Commit

Permalink
add chart
Browse files Browse the repository at this point in the history
  • Loading branch information
Joatin committed Dec 25, 2024
1 parent 4557c0c commit eea7b4b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 0 additions & 1 deletion shared/src/config/ocpp_config.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use crate::Config;
use serde::{Deserialize, Serialize};
use tracing::warn;

Expand Down
9 changes: 9 additions & 0 deletions shared/src/sqlx_data_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,18 @@ impl DataStore for SqlxDataStore<Postgres> {

#[derive(FromRow, Debug, Clone)]
struct PasswordRecord {
#[allow(dead_code)]
id: Uuid,

#[allow(dead_code)]
charger_id: String,

#[allow(dead_code)]
hashed_password: String,

#[allow(dead_code)]
created_at: DateTime<Utc>,

#[allow(dead_code)]
last_used_at: Option<DateTime<Utc>>,
}

0 comments on commit eea7b4b

Please sign in to comment.