add liegenschaft
This commit is contained in:
22
src/domain/liegenschaft/repository.rs
Normal file
22
src/domain/liegenschaft/repository.rs
Normal file
@@ -0,0 +1,22 @@
|
||||
mod liegenschaft_alle;
|
||||
mod liegenschaft_dataloader;
|
||||
mod liegenschaft_einen_zeigen;
|
||||
mod liegenschaft_erstelle_viele;
|
||||
mod liegenschaft_erstellen;
|
||||
mod liegenschaft_loeschen;
|
||||
mod liegenschaft_update;
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct Repository {}
|
||||
|
||||
impl Repository {
|
||||
pub fn new() -> Repository {
|
||||
Repository {}
|
||||
}
|
||||
}
|
||||
|
||||
impl Default for Repository {
|
||||
fn default() -> Self {
|
||||
Self::new()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user