golang-github-grpc-ecosystem-go-grpc-middleware 1.3.0-1 source package in Ubuntu

Changelog

golang-github-grpc-ecosystem-go-grpc-middleware (1.3.0-1) experimental; urgency=medium

  * Team upload.
  * New upstream release.

 -- Thomas Goirand <email address hidden>  Wed, 05 Oct 2022 11:53:20 +0200

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Experimental
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-grpc-ecosystem-go-grpc-middleware_1.3.0-1.dsc 2.8 KiB 8bbee530bbdb11a58a275c34878c372558223c294384897822eba1338b84db82
golang-github-grpc-ecosystem-go-grpc-middleware_1.3.0.orig.tar.gz 101.3 KiB c9b908202c05a7f821b03ee49cd678e7e71469519054629770e0565d78275cbc
golang-github-grpc-ecosystem-go-grpc-middleware_1.3.0-1.debian.tar.xz 2.6 KiB e750960375c805d4f090a1917d2f024717dc555c8ae966b23edfa6dee2be4b7e

No changes file available.

Binary packages built by this source

golang-github-grpc-ecosystem-go-grpc-middleware-dev: Go gRPC Middlewares: interceptor chaining, auth, logging, retries and more

 gRPC Go recently acquired support for Interceptors, i.e. middleware
 that is executed either on the gRPC Server before the request is passed
 onto the user's application logic, or on the gRPC client either around
 the user call. It is a perfect way to implement common patterns: auth,
 logging, message, validation, retries or monitoring.
 .
 These are generic building blocks that make it easy to build multiple
 microservices easily. The purpose of this repository is to act as a
 go-to point for such reusable functionality. It contains some of them
 itself, but also will link to useful external repos.
 .
 grpc_middleware itself provides support for chaining interceptors.