Skip to content

Instantly share code, notes, and snippets.

@mfifth
Created September 21, 2017 18:56
Show Gist options
  • Save mfifth/5e67652c780927341b24d4a8c55324a9 to your computer and use it in GitHub Desktop.
Save mfifth/5e67652c780927341b24d4a8c55324a9 to your computer and use it in GitHub Desktop.
router.get('/', add_site_form)
.get('/auth/', auth)
.get('/verify/:app_id', verify)
.get('/webhooks/:shop_id', go_webhooks)
.post('/webhooks/:action/:shop_id', go_webhook)
.post('/products/create/:shop_id', product_create);
.post('/customers/create/:shop_id', customer_create);
/mnt/c/Users/Matt/Desktop/NodeProjects/myapp/app.js:10
.post('/customers/create/:shop_id', customer_create);
^
SyntaxError: Unexpected token .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment