From d4ba59f587ae508ae4f0d11e9d262667b426dddc Mon Sep 17 00:00:00 2001 From: JT Olds Date: Wed, 11 Jan 2017 22:03:48 -0700 Subject: [PATCH] blogpost --- README.md | 6 ++++-- pkg.go | 3 +++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e2977a0..998a313 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,13 @@ # webhelp + A bunch of useful utilities for whenever I do web programming in Go. Like a framework, but better, cause it's not. ## Docs https://godoc.org/gopkg.in/webhelp.v1 +Recently, I wrote a long blog post about how to use webhelp: +http://www.jtolds.com/writing/2017/01/writing-advanced-web-applications-with-go/ + See also the OAuth2 extensions (https://github.com/go-webhelp/whoauth2) or the Goth extensions (https://github.com/go-webhelp/whgoth). - -An example that includes OAuth2: https://github.com/go-webhelp/whoauth2/blob/master/examples/one/main.go diff --git a/pkg.go b/pkg.go index 551a9e3..4fde2db 100644 --- a/pkg.go +++ b/pkg.go @@ -8,4 +8,7 @@ // webhelp tightly integrates with the new Go 1.7 Request Context support, // but has backported the functionality to previous Go releases in the whcompat // subpackage. +// +// Recently I wrote a long blog post about how to use webhelp: +// http://www.jtolds.com/writing/2017/01/writing-advanced-web-applications-with-go/ package webhelp // import "gopkg.in/webhelp.v1"