Skip to content

Instantly share code, notes, and snippets.

@yoshuawuyts
Last active January 31, 2019 12:26
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/83c65752a11df1ef843a6376fcbe2c70 to your computer and use it in GitHub Desktop.
Save yoshuawuyts/83c65752a11df1ef843a6376fcbe2c70 to your computer and use it in GitHub Desktop.
let config = Config::from_args();
let mut app = tide::App::new(())
.address(config.address)
.port(config.port);
app.at("/").get(reply);
app.serve();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment