Created
September 27, 2021 16:22
-
-
Save mike820324/bd0d4474949c0fcffb4dd46f1fb8d354 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub mod consultant; | |
pub mod patient; | |
pub fn register_urls(cfg: &mut actix_web::web::ServiceConfig) { | |
consultant::urls::register_urls(cfg); | |
patient::urls::register_urls(cfg); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment