upvoters/src/votes/repository.rs

10 lines
128 B
Rust
Raw Normal View History

use super::model::Vote;
pub struct VoteRepository {}
impl VoteRepository {
pub fn new() -> Self {
Self {}
}
}