refactor: rename dc_token to token

This commit is contained in:
dignifiedquire
2019-09-08 13:07:29 +02:00
committed by holger krekel
parent aa7d0679df
commit 96e02af0da
3 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,6 @@ use crate::constants::*;
use crate::contact::*;
use crate::context::Context;
use crate::dc_mimeparser::*;
use crate::dc_token::*;
use crate::dc_tools::*;
use crate::e2ee::*;
use crate::error::Error;
@@ -20,6 +19,7 @@ use crate::param::*;
use crate::peerstate::*;
use crate::qr::check_qr;
use crate::stock::StockMessage;
use crate::token::*;
use crate::types::*;
pub const NON_ALPHANUMERIC_WITHOUT_DOT: &AsciiSet = &NON_ALPHANUMERIC.remove(b'.');