10 lines
128 B
Rust
10 lines
128 B
Rust
|
|
use super::model::Vote;
|
||
|
|
|
||
|
|
pub struct VoteRepository {}
|
||
|
|
|
||
|
|
impl VoteRepository {
|
||
|
|
pub fn new() -> Self {
|
||
|
|
Self {}
|
||
|
|
}
|
||
|
|
}
|