diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-10-31 10:14:31 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-10-31 10:14:31 -0400 |
commit | 3e1eadbbfdca1b2c0cb32ba4c8e1160a60e0ccb8 (patch) | |
tree | 3b712bc31a6db0a16ddfd4a02529d8b2497a5c54 /dichroism/src/main.rs | |
parent | 00c71f6baff136a88805ca2e3f9ef72453ac9f35 (diff) | |
download | theglassyladies-3e1eadbbfdca1b2c0cb32ba4c8e1160a60e0ccb8.tar.xz theglassyladies-3e1eadbbfdca1b2c0cb32ba4c8e1160a60e0ccb8.zip |
All basic functionality implemented.
Diffstat (limited to 'dichroism/src/main.rs')
-rw-r--r-- | dichroism/src/main.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dichroism/src/main.rs b/dichroism/src/main.rs index c255717..68b7091 100644 --- a/dichroism/src/main.rs +++ b/dichroism/src/main.rs @@ -16,6 +16,7 @@ mod constants; mod dtos; mod error; mod handlers; +mod image_service; mod models; mod repo; mod result; @@ -34,8 +35,8 @@ async fn main() -> Result<()> { .data(pool.clone()) .service(handlers::hello) .service(handlers::get_products) - .service(handlers::update_product) - .service(handlers::create_product) + .service(handlers::patch_product) + .service(handlers::post_product) }); // If using listenfd, bind to it instead of the configured address to allow for cargo watch |