put the linter to rest

i18n
michal 2 years ago
parent e9247e15e7
commit 79340f2e6b

@ -1,5 +1,7 @@
use crate::Options;
#[allow(dead_code)]
#[allow(unused_variables)]
pub fn add(a: String, options: Options) {
// TODO: the actual database code lmao
}

@ -2,6 +2,7 @@ use crate::Options;
mod add;
#[allow(dead_code)]
pub fn add(a: String, options: Options) {
add::add(a, options);
}

Loading…
Cancel
Save