golang-github-gorilla-mux 1.1-4 source package in Ubuntu

Changelog

golang-github-gorilla-mux (1.1-4) unstable; urgency=medium

  * Team Upload
  * Convert to XS-Go-Import-Path

 -- Michael Stapelberg <email address hidden>  Wed, 25 Oct 2017 08:59:44 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe misc

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-gorilla-mux_1.1-4.dsc 2.2 KiB 6611a4819d7a98c6dfecdc056c0f428ffaab31561182eedf4947123ed9432858
golang-github-gorilla-mux_1.1.orig.tar.gz 23.7 KiB 66c6990df41605fd1de54a1d6d4e6460d4c4c00f0ace9fc82f6c2c68b13fb8aa
golang-github-gorilla-mux_1.1-4.debian.tar.xz 5.0 KiB cf77761fbe5fe3a0f47f8c13f3e5264e59617827400c7494ebfe1b5572c84579

No changes file available.

Binary packages built by this source

golang-github-gorilla-mux-dev: powerful URL router and dispatcher for golang

 Package gorilla/mux implements a request router and dispatcher.
 .
 The name mux stands for "HTTP request multiplexer". Like the standard
 http.ServeMux, mux.Router matches incoming requests against a list of
 registered routes and calls a handler for the route that matches the URL
 or other conditions. The main features are:
 .
  * Requests can be matched based on URL host, path, path prefix, schemes,
    header and query values, HTTP methods or using custom matchers.
  * URL hosts and paths can have variables with an optional regular expression.
  * Registered URLs can be built, or "reversed", which helps maintaining
    references to resources.
  * Routes can be used as subrouters: nested routes are only tested if the
    parent route matches. This is useful to define groups of routes that share
    common conditions like a host, a path prefix or other repeated attributes.
    As a bonus, this optimizes request matching.
  * It implements the http.Handler interface so it is compatible with the
    standard http.ServeMux.