1
0
mirror of https://github.com/volatiletech/authboss.git synced 2025-01-22 05:09:42 +02:00

Added required handler for ListenAndServe

http.ListenAndServe requires two arguments, the second one can be nil,
but must be present.  https://golang.org/pkg/net/http/#ListenAndServe

Omitting it, even in just documention code snippets like ths one,
might confuse people just learning (like myself).
This commit is contained in:
Darrell Golliher 2016-11-27 18:07:16 -05:00
parent ac25a98c72
commit baa27547a7

View File

@ -70,7 +70,7 @@ if err := ab.Init(); err != nil {
// Make sure to put authboss's router somewhere
http.Handle("/authboss", ab.NewRouter())
http.ListenAndServe(":8080")
http.ListenAndServe(":8080",nil)
```
Once you've got this code set up, it's time to implement the use cases you care about.