weather_RUST_API 0.1.0

By using this API you can check temperature of any place
Documentation
1
2
3
4
5
6
#[macro_use] extern crate rocket;
extern crate weather_RUST_API;

fn main() {
    rocket::ignite().mount("/", routes![weather_RUST_API::hello]).launch();
}