Skip to content

Instantly share code, notes, and snippets.

View sdt's full-sized avatar

Stephen Thirlwall sdt

  • Melbourne, Australia
View GitHub Profile
@sdt
sdt / swagger.yaml
Created July 11, 2018 00:50
swagger.yaml
swagger: '2.0'
info:
version: 0.0.1
title: Streuth Profile API
basePath: /api
tags:
- name: public

Keybase proof

I hereby claim:

  • I am sdt on github.
  • I am sdt (https://keybase.io/sdt) on keybase.
  • I have a public key ASC_1H-6kQEXCsUJjxmjI2BrbDjOcxUD2_E7sQTQ6vpw_Ao

To claim this, I am signing this object:

@sdt
sdt / app.psgi
Last active August 29, 2015 14:10
Dancer2 issue - no logger in serializer
use Dancer2;
any '/' => sub {
return { hello => 'world' };
};
dance;