1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-20 12:02:22 +03:00

Move storage module to its own crate

This commit is contained in:
Quentin Gliech
2021-12-17 12:15:07 +01:00
parent 584294538b
commit ceb17d3646
46 changed files with 116 additions and 71 deletions

View File

@@ -15,7 +15,7 @@
use argon2::Argon2;
use clap::Parser;
use mas_config::DatabaseConfig;
use mas_core::storage::register_user;
use mas_storage::user::register_user;
use tracing::{info, warn};
use super::RootCommand;