Break build

This commit is contained in:
Bianca Fürstenau 2025-03-07 16:10:06 +01:00
parent 7fc710d4f5
commit c1e63fa761
11 changed files with 559 additions and 147 deletions

View file

@ -1,8 +1,7 @@
#[cfg(feature = "server")]
use rusqlite::{types::ToSqlOutput, ToSql};
use serde::{Deserialize, Serialize};
#[derive(Clone, Copy, Debug, Serialize, Deserialize)]
#[cfg_attr(features = "dep:sqlx", derive(sqlx::Type))]
pub enum Account {
Sumpf,
Heinersyndikat,
@ -37,14 +36,4 @@ impl std::fmt::Display for Account {
}
.fmt(f)
}
}
#[cfg(feature = "server")]
impl ToSql for Account {
fn to_sql(&self) -> rusqlite::Result<ToSqlOutput<'_>> {
match self {
Account::Sumpf => 0.to_sql(),
Account::Heinersyndikat => 1.to_sql(),
}
}
}
}