mirror of
https://github.com/n08i40k/schedule-parser-rusted.git
synced 2025-12-06 09:47:50 +03:00
- Removed "/schedule/update-download-url" endpoint, this mechanism was replaced by Yandex Cloud FaaS. Ура :) - Improved schedule caching mechanism. - Added Telegram WebApp authentication support. - Reworked endpoints responses and errors mechanism. - Refactored application state management. - Make synchronous database operations, middlewares and extractors to asynchronous. - Made user password field optional to support multiple auth methods. - Renamed users table column "version" to "android_version" and made it nullable.
9 lines
105 B
Rust
9 lines
105 B
Rust
mod shared;
|
|
mod sign_in;
|
|
mod sign_up;
|
|
|
|
pub use sign_in::*;
|
|
pub use sign_up::*;
|
|
|
|
// TODO: change-password
|