base: Rename the state store file since it's a specific implementation of it.

master
Damir Jelić 2020-05-13 10:58:30 +02:00
parent e9b48b73d4
commit 676633eec1
2 changed files with 2 additions and 2 deletions

View File

@ -18,9 +18,9 @@ use std::collections::HashMap;
use serde::{Deserialize, Serialize};
#[cfg(not(target_arch = "wasm32"))]
mod state_store;
mod json_store;
#[cfg(not(target_arch = "wasm32"))]
pub use state_store::JsonStore;
pub use json_store::JsonStore;
use crate::client::{BaseClient, Token};
use crate::events::push_rules::Ruleset;