golang-github-justinas-alice 1.2.0-2 source package in Ubuntu

Changelog

golang-github-justinas-alice (1.2.0-2) unstable; urgency=medium

  * Team upload.
  * No-change, source-only upload as requested by the release team.

 -- Cyril Brulebois <email address hidden>  Mon, 07 Jun 2021 00:35:16 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Impish: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-justinas-alice_1.2.0-2.dsc 2.2 KiB 24f3b99d34c85970e82d3a64430dcd34b293a1c196d6be67ab043f7fa9edece0
golang-github-justinas-alice_1.2.0.orig.tar.gz 4.5 KiB 12171459da7096e0d34a0972387e15978ad7b0e73c83ce04ba2f89c44a22336b
golang-github-justinas-alice_1.2.0-2.debian.tar.xz 2.3 KiB 638f3942593a8c486c4db8c6208506723069dd4d2397911aed1177a652ada3b2

Available diffs

No changes file available.

Binary packages built by this source

golang-github-justinas-alice-dev: Painless middleware chaining for Go

 Alice provides a convenient way to chain HTTP middleware functions and
 the app handler.
 .
 It transforms:
   go Middleware1(Middleware2(Middleware3(App)))
 to
   go alice.New(Middleware1, Middleware2, Middleware3).Then(App)
 .
 None of the other middleware chaining solutions behaves exactly
 like Alice. Alice is as minimal as it gets: in essence, it's just a
 for loop that does the wrapping for you.