places/db/mod.rs
1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5// We don't want 'db.rs' as a sub-module. We could move the contents here? Or something else?
6#[allow(clippy::module_inception)] // FIXME
7pub mod db;
8mod schema;
9mod tx;
10pub use self::tx::PlacesTransaction;
11
12pub use crate::db::db::{GlobalChangeCounterTracker, PlacesDb, SharedPlacesDb};