Skip to content

Commit

Permalink
Updating readme to reflect project completed status
Browse files Browse the repository at this point in the history
  • Loading branch information
stephens2424 committed Aug 4, 2014
1 parent bb7e507 commit d30e92e
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions readme.md
Expand Up @@ -6,15 +6,11 @@ MuxChain is a small package designed to complement [net/http](http://golang.org/

```
muxchain.Chain("/", logger, gzipHandler, echoHandler)
http.ListenAndServe(":36363", muxchain.Default)
http.ListenAndServe(":8080", muxchain.Default)
```

This specifies that all patterns matched should be handled by the logger, then gzip, then echo. Since we're chaining to the default MuxChain, we can just pass that to `http.ListenAndServe`. You can see a more complete example in the "sample" directory.

### Status and Direction

The naming or APIs may change a little bit to make code using this package a bit more readable. The package is also quite new, so ideas may emerge for improvement after some usage. Please feel free to make these types of suggestions, particularly in this early stage.

#### License

BSD 3-clause (see LICENSE file)
BSD 3-clause (see LICENSE file)

0 comments on commit d30e92e

Please sign in to comment.