Base: Change pub(crate)
to pub
for the db backends
This commit is contained in:
parent
ae19dfe8c1
commit
b76c2c54b3
@ -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 {}
|
||||
}
|
||||
}
|
||||
|
@ -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 {}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user