Skip to content

Instantly share code, notes, and snippets.

@yoshuawuyts
Created August 7, 2019 15:11
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 yoshuawuyts/0786828438a018bcea4e90476ba0e2ab to your computer and use it in GitHub Desktop.
Save yoshuawuyts/0786828438a018bcea4e90476ba0e2ab to your computer and use it in GitHub Desktop.
#[cli]
struct Args {
/// The language of the text.
#[cli(header = "Content-Language")]
lang: String,
/// The current page's description.
#[cli(dom = "head.description")]
desc: String,
}
async fn main(args: Args) {
dbg!(args.lang, args.desc);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment