move taskchampion::server::remote::crypto to taskchampion::server::crypto

This commit is contained in:
Dustin J. Mitchell 2021-10-16 22:37:28 +00:00
parent 0f39a3f3b2
commit 97d1366b66
3 changed files with 2 additions and 2 deletions

View file

@ -12,6 +12,7 @@ However, users who wish to implement their own server interfaces can implement t
pub(crate) mod test;
mod config;
mod crypto;
mod local;
mod remote;
mod types;

View file

@ -5,8 +5,7 @@ use crate::server::{
use std::time::Duration;
use uuid::Uuid;
mod crypto;
use crypto::{Cryptor, Sealed, Secret, Unsealed};
use super::crypto::{Cryptor, Sealed, Secret, Unsealed};
pub struct RemoteServer {
origin: String,