├── .editorconfig ├── .env-example ├── .gitattributes ├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── handlers.go ├── initialize.go ├── listener.go ├── main.go ├── readme.md ├── routes.go └── server.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstroot/fasthttp-graceful-shutdown/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env-example: -------------------------------------------------------------------------------- 1 | PORT=9000 2 | COMPRESS=true 3 | DEBUG=false 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstroot/fasthttp-graceful-shutdown/HEAD/.gitignore -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstroot/fasthttp-graceful-shutdown/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstroot/fasthttp-graceful-shutdown/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstroot/fasthttp-graceful-shutdown/HEAD/handlers.go -------------------------------------------------------------------------------- /initialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstroot/fasthttp-graceful-shutdown/HEAD/initialize.go -------------------------------------------------------------------------------- /listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstroot/fasthttp-graceful-shutdown/HEAD/listener.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstroot/fasthttp-graceful-shutdown/HEAD/main.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstroot/fasthttp-graceful-shutdown/HEAD/readme.md -------------------------------------------------------------------------------- /routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstroot/fasthttp-graceful-shutdown/HEAD/routes.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dstroot/fasthttp-graceful-shutdown/HEAD/server.go --------------------------------------------------------------------------------