No description
Find a file
renovate[bot] 45f9d91104
chore(deps): add renovate.json (#5)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-07-03 10:12:28 -04:00
examples minor(servers): implement both gRPC & HTTP servers (#4) 2022-07-02 23:13:40 -04:00
.gitignore Initial commit 2022-04-09 11:18:33 -04:00
go.mod minor(servers): implement both gRPC & HTTP servers (#4) 2022-07-02 23:13:40 -04:00
go.sum minor(servers): implement both gRPC & HTTP servers (#4) 2022-07-02 23:13:40 -04:00
grpc_server.go minor(servers): implement both gRPC & HTTP servers (#4) 2022-07-02 23:13:40 -04:00
http_server.go minor(servers): implement both gRPC & HTTP servers (#4) 2022-07-02 23:13:40 -04:00
LICENSE Initial commit 2022-04-09 11:18:33 -04:00
README.md minor(servers): implement both gRPC & HTTP servers (#4) 2022-07-02 23:13:40 -04:00
renovate.json chore(deps): add renovate.json (#5) 2022-07-03 10:12:28 -04:00
server.go minor(servers): implement both gRPC & HTTP servers (#4) 2022-07-02 23:13:40 -04:00

server-utils

Utils library for Go HTTP & gRPC servers.

Install this library

To use this library in your own project, simply run this command:

$ go get github.com/clubcedille/server-utils@latest
...

gRPC Server

The server-utils library offers a gRPC implementation of graceful shutdown and real-time status fetching. See this example to learn how to use its functions.

HTTP Server

The server-utils library offers an HTTP implementation of graceful shutdown and real-time status fetching. See this example to learn how to use its functions.