Base: Change pub(crate) to pub for the db backends

This commit is contained in:
ProtoByter 2022-09-06 09:56:11 +01:00
parent ae19dfe8c1
commit b76c2c54b3
2 changed files with 4 additions and 4 deletions

View File

@ -1,12 +1,12 @@
use std::iter::Map;
use crate::db::DbBackend;
pub(crate) struct RedisBackend {
pub struct RedisBackend {
}
impl RedisBackend {
pub(crate) fn new() -> Self {
pub fn new() -> Self {
Self {}
}
}

View File

@ -1,12 +1,12 @@
use std::iter::Map;
use crate::db::DbBackend;
pub(crate) struct SqliteBackend {
pub struct SqliteBackend {
}
impl SqliteBackend {
pub(crate) fn new() -> Self {
pub fn new() -> Self {
Self {}
}
}