feat: implement payment order system (create-order, mock-confirm, get-quota)

This commit is contained in:
2026-04-17 12:45:53 +08:00
parent 454139f70d
commit 562528a1f0
7 changed files with 296 additions and 3 deletions

View File

@@ -2,6 +2,7 @@
pub mod admin;
pub mod auth;
pub mod health;
pub mod payment;
pub mod static_files;
pub mod user;
pub mod weather;
@@ -24,3 +25,7 @@ pub use weather::generate_temp_token_handler;
pub use weather::get_weather_brief;
pub use weather::get_weather_details;
pub use weather::post_weather_data;
pub use payment::create_order;
pub use payment::get_user_quota;
pub use payment::mock_confirm;