Initial commit with Claude created service skeleton

This commit is contained in:
Alex Selimov 2026-03-17 09:38:52 -04:00
commit 09e538872d
13 changed files with 848 additions and 0 deletions

9
src/votes/repository.rs Normal file
View file

@ -0,0 +1,9 @@
use super::model::Vote;
pub struct VoteRepository {}
impl VoteRepository {
pub fn new() -> Self {
Self {}
}
}