Move leave_project from Store to db module

This commit is contained in:
Nathan Sobo 2022-11-16 14:24:26 -07:00
parent bdb521cb6b
commit e5f05c9f3b
4 changed files with 82 additions and 48 deletions

View file

@ -24,7 +24,7 @@ use std::{
};
use tracing::instrument;
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, Serialize)]
#[derive(Clone, Copy, Default, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, Serialize)]
pub struct ConnectionId(pub u32);
impl fmt::Display for ConnectionId {