├── .travis.yml ├── LICENSE ├── README.md ├── _example └── example.go ├── uwsgi.go └── uwsgi_test.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-uwsgi/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-uwsgi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-uwsgi/HEAD/README.md -------------------------------------------------------------------------------- /_example/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-uwsgi/HEAD/_example/example.go -------------------------------------------------------------------------------- /uwsgi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-uwsgi/HEAD/uwsgi.go -------------------------------------------------------------------------------- /uwsgi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-uwsgi/HEAD/uwsgi_test.go --------------------------------------------------------------------------------