I often write one-off tools using this module and I keep needing to come back to the docs to copy/paste this snippet. ``` go client := github.NewClient( oauth2.NewClient( ctx, oauth2.StaticTokenSource( &oauth2.Token{ AccessToken: token, }, ), ), ) ``` It would be nice if there was a helper to do this. ``` go client := github.NewTokenClient(ctx, token) ```