begin implementing repository for accessing database
This commit is contained in:
11
src-tauri/src/repositories/path_repository.rs
Normal file
11
src-tauri/src/repositories/path_repository.rs
Normal file
@@ -0,0 +1,11 @@
|
||||
use sqlx::sqlite::{SqlitePool};
|
||||
|
||||
pub struct PathRepository<'a> {
|
||||
pub pool: &'a SqlitePool,
|
||||
}
|
||||
|
||||
impl<'a> PathRepository<'a> {
|
||||
pub fn get_path_by_id(&self, id: i32) -> Result<Path>{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user