A CONTRIBUTING.md => CONTRIBUTING.md +31 -0
@@ 0,0 1,31 @@
+## Submitting Patches
+
+To submit a patch, first learn to use `git send-email` by reading
+[git-send-email.io], then read the SourceHut [mailing list etiquette] guide.
+You can send patches to my general purpose patches [mailing list].
+
+Please prefix the subject with `[PATCH mux]`.
+To configure your checkout of this repo to always use the correct prefix and
+send to the correct list cd into the repo and run:
+
+ git config sendemail.to ~samwhited/patches@lists.sr.ht
+ git config format.subjectPrefix 'PATCH mux'
+
+[git-send-email.io]: https://git-send-email.io/
+[mailing list etiquette]: https://man.sr.ht/lists.sr.ht/etiquette.md
+[mailing list]: https://lists.sr.ht/~samwhited/patches
+
+
+## License
+
+Licensed under the BSD 2 Clause License ([LICENSE] or
+https://opensource.org/licenses/BSD-2-Clause)
+
+[LICENSE]: https://git.sr.ht/~samwhited/mux/tree/master/LICENSE.md
+
+
+### Contribution
+
+Unless you explicitly state otherwise, any contribution intentionally submitted
+for inclusion in the work by you shall be licensed as above, without any
+additional terms or conditions.
A LICENSE => LICENSE +23 -0
@@ 0,0 1,23 @@
+Copyright © 2014 The Soquee Contributors.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation
+and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
A README.md => README.md +23 -0
@@ 0,0 1,23 @@
+# mux
+
+[](https://godoc.org/code.soquee.net/mux)
+
+Package **`mux`** is a Go HTTP multiplexer that provided typed route parameters.
+
+```go
+import (
+ "code.soquee.net/mux"
+)
+```
+
+
+## License
+
+The package may be used under the terms of the BSD 2-Clause License a copy of
+which may be found in the [`LICENSE`] file.
+
+Unless you explicitly state otherwise, any contribution submitted for inclusion
+in the work by you shall be licensed as above, without any additional terms or
+conditions.
+
+[`LICENSE`]: ./LICENSE
M pathmux.go => pathmux.go +1 -1
@@ 32,7 32,7 @@
// /user/{b int}/edit
// /user/{b string}/edit
// /user/me
-package mux
+package mux // import "code.soquee.net/mux"
import (
"context"