Skip to content

Instantly share code, notes, and snippets.

@zaiste
Created April 24, 2019 13:57
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 zaiste/792fbbc60e76475d479d0cd42ec095c8 to your computer and use it in GitHub Desktop.
Save zaiste/792fbbc60e76475d479d0cd42ec095c8 to your computer and use it in GitHub Desktop.
const Szelmostwo = require('./');
const { ok } = require('./response');
const app = new Szelmostwo();
app.get('/', async _ => ok({ hello: 'world' }));
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment