├── .gitignore ├── .travis.yml ├── Dockerfile ├── Godeps ├── Godeps.json ├── Readme └── _workspace │ ├── .gitignore │ └── src │ └── github.com │ ├── Sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── entry.go │ │ ├── entry_test.go │ │ ├── examples │ │ ├── basic │ │ │ └── basic.go │ │ └── hook │ │ │ └── hook.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── formatter_bench_test.go │ │ ├── hook_test.go │ │ ├── hooks.go │ │ ├── hooks │ │ ├── airbrake │ │ │ └── airbrake.go │ │ ├── papertrail │ │ │ ├── README.md │ │ │ ├── papertrail.go │ │ │ └── papertrail_test.go │ │ ├── sentry │ │ │ ├── README.md │ │ │ ├── sentry.go │ │ │ └── sentry_test.go │ │ └── syslog │ │ │ ├── README.md │ │ │ ├── syslog.go │ │ │ └── syslog_test.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── logrus_test.go │ │ ├── terminal_darwin.go │ │ ├── terminal_freebsd.go │ │ ├── terminal_linux.go │ │ ├── terminal_notwindows.go │ │ ├── terminal_windows.go │ │ └── text_formatter.go │ ├── codegangsta │ └── negroni │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── logger.go │ │ ├── logger_test.go │ │ ├── negroni.go │ │ ├── negroni_test.go │ │ ├── recovery.go │ │ ├── recovery_test.go │ │ ├── response_writer.go │ │ ├── response_writer_test.go │ │ ├── static.go │ │ └── static_test.go │ ├── julienschmidt │ └── httprouter │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── path.go │ │ ├── path_test.go │ │ ├── router.go │ │ ├── router_test.go │ │ ├── tree.go │ │ └── tree_test.go │ └── meatballhat │ └── negroni-logrus │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── example │ └── example.go │ └── middleware.go ├── LICENSE ├── README.md ├── db.go ├── db.json ├── db_test.go ├── handlers.go ├── handlers_test.go ├── qrest.iml ├── server.go └── server_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Dockerfile -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_freebsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/negroni/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/codegangsta/negroni/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/negroni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/codegangsta/negroni/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/negroni/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/codegangsta/negroni/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/negroni/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/codegangsta/negroni/logger.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/negroni/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/codegangsta/negroni/logger_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/negroni/negroni.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/codegangsta/negroni/negroni.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/negroni/negroni_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/codegangsta/negroni/negroni_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/negroni/recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/codegangsta/negroni/recovery.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/negroni/recovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/codegangsta/negroni/recovery_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/negroni/response_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/codegangsta/negroni/response_writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/negroni/response_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/codegangsta/negroni/response_writer_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/negroni/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/codegangsta/negroni/static.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/negroni/static_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/codegangsta/negroni/static_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/julienschmidt/httprouter/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/julienschmidt/httprouter/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/julienschmidt/httprouter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/julienschmidt/httprouter/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/julienschmidt/httprouter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/julienschmidt/httprouter/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/julienschmidt/httprouter/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/julienschmidt/httprouter/path.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/julienschmidt/httprouter/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/julienschmidt/httprouter/path_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/julienschmidt/httprouter/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/julienschmidt/httprouter/router.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/julienschmidt/httprouter/router_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/julienschmidt/httprouter/router_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/julienschmidt/httprouter/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/julienschmidt/httprouter/tree.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/julienschmidt/httprouter/tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/julienschmidt/httprouter/tree_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/meatballhat/negroni-logrus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/meatballhat/negroni-logrus/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/meatballhat/negroni-logrus/.travis.yml: -------------------------------------------------------------------------------- 1 | --- 2 | language: go 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/meatballhat/negroni-logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/meatballhat/negroni-logrus/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/meatballhat/negroni-logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/meatballhat/negroni-logrus/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/meatballhat/negroni-logrus/example/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/meatballhat/negroni-logrus/example/example.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/meatballhat/negroni-logrus/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/Godeps/_workspace/src/github.com/meatballhat/negroni-logrus/middleware.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/README.md -------------------------------------------------------------------------------- /db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/db.go -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/db.json -------------------------------------------------------------------------------- /db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/db_test.go -------------------------------------------------------------------------------- /handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/handlers.go -------------------------------------------------------------------------------- /handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/handlers_test.go -------------------------------------------------------------------------------- /qrest.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/qrest.iml -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/server.go -------------------------------------------------------------------------------- /server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landaire/qrest/HEAD/server_test.go --------------------------------------------------------------------------------