Skip to content

Instantly share code, notes, and snippets.

@tobymurray
Created October 3, 2021 21:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tobymurray/b549bd6f47802d63d6e606cd6b5e1578 to your computer and use it in GitHub Desktop.
Save tobymurray/b549bd6f47802d63d6e606cd6b5e1578 to your computer and use it in GitHub Desktop.
[package]
name = "shopify-template2"
version = "0.1.0"
edition = "2018"
[dependencies]
rocket = "0.5.0-rc.1"
// src/main.rs
fn rocket() -> rocket::Rocket<rocket::Build> {
rocket::build()
}
#[rocket::main]
async fn main() {
let _ = rocket().launch().await;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment