- clean up dead code - fix lints - move Session type to legacy module - refactor service names into constants - refactor build_url to be less restrictive for service names - refactor most commands into their own modules
7 lines
136 B
Rust
7 lines
136 B
Rust
mod i_authentication_service;
|
|
mod login;
|
|
mod phone_ajax;
|
|
|
|
pub use i_authentication_service::*;
|
|
pub use login::*;
|
|
pub use phone_ajax::*;
|