├── .gitignore ├── LICENSE ├── README.md ├── csharp.html ├── curl.html ├── go.html ├── groovy.html ├── java.html ├── javascript.html ├── nodejs.html ├── objc.html ├── perl.html ├── php.html ├── python.html ├── raw.html ├── ruby.html ├── swift.html └── vb.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | /.idea 3 | /nbproject 4 | /_site 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/README.md -------------------------------------------------------------------------------- /csharp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/csharp.html -------------------------------------------------------------------------------- /curl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/curl.html -------------------------------------------------------------------------------- /go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/go.html -------------------------------------------------------------------------------- /groovy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/groovy.html -------------------------------------------------------------------------------- /java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/java.html -------------------------------------------------------------------------------- /javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/javascript.html -------------------------------------------------------------------------------- /nodejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/nodejs.html -------------------------------------------------------------------------------- /objc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/objc.html -------------------------------------------------------------------------------- /perl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/perl.html -------------------------------------------------------------------------------- /php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/php.html -------------------------------------------------------------------------------- /python.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/python.html -------------------------------------------------------------------------------- /raw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/raw.html -------------------------------------------------------------------------------- /ruby.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/ruby.html -------------------------------------------------------------------------------- /swift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/swift.html -------------------------------------------------------------------------------- /vb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaryio/language-templates/HEAD/vb.html --------------------------------------------------------------------------------