Merge pull request #60 from tomtaylor/gofmt-fixes
Run gofmt over source
This commit is contained in:
		
						commit
						601ae6f4ec
					
				| 
						 | 
					@ -10,9 +10,9 @@ import (
 | 
				
			||||||
	"net/http"
 | 
						"net/http"
 | 
				
			||||||
	"net/http/httputil"
 | 
						"net/http/httputil"
 | 
				
			||||||
	"net/url"
 | 
						"net/url"
 | 
				
			||||||
 | 
						"regexp"
 | 
				
			||||||
	"strings"
 | 
						"strings"
 | 
				
			||||||
	"time"
 | 
						"time"
 | 
				
			||||||
	"regexp"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	"github.com/bitly/go-simplejson"
 | 
						"github.com/bitly/go-simplejson"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -4,8 +4,8 @@ import (
 | 
				
			||||||
	"errors"
 | 
						"errors"
 | 
				
			||||||
	"fmt"
 | 
						"fmt"
 | 
				
			||||||
	"net/url"
 | 
						"net/url"
 | 
				
			||||||
	"time"
 | 
					 | 
				
			||||||
	"regexp"
 | 
						"regexp"
 | 
				
			||||||
 | 
						"time"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Configuration Options that can be set by Command Line Flag, or Config File
 | 
					// Configuration Options that can be set by Command Line Flag, or Config File
 | 
				
			||||||
| 
						 | 
					@ -28,8 +28,8 @@ type Options struct {
 | 
				
			||||||
	SkipAuthRegex           []string      `flag:"skip-auth-regex" cfg:"skip_auth_regex"`
 | 
						SkipAuthRegex           []string      `flag:"skip-auth-regex" cfg:"skip_auth_regex"`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// internal values that are set after config validation
 | 
						// internal values that are set after config validation
 | 
				
			||||||
	redirectUrl *url.URL
 | 
						redirectUrl   *url.URL
 | 
				
			||||||
	proxyUrls   []*url.URL
 | 
						proxyUrls     []*url.URL
 | 
				
			||||||
	CompiledRegex []*regexp.Regexp
 | 
						CompiledRegex []*regexp.Regexp
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue