Normalize code whitespace.

api/rm-interface
Icedream 2016-06-25 23:20:59 +02:00
parent 654ecca4c5
commit 65ccba4d66
1 changed files with 3 additions and 4 deletions

View File

@ -50,11 +50,10 @@ func NewClient(h *http.Client) Client {
// SetToken Set the authentication token // SetToken Set the authentication token
// Calling this method is *optional* // Calling this method is *optional*
func (c* client) SetToken(authToken string) { func (c *client) SetToken(authToken string) {
c.AuthToken=authToken c.AuthToken = authToken
} }
func (c *client) req(path string, pathValues ...interface{}) request { func (c *client) req(path string, pathValues ...interface{}) request {
return request{c, fmt.Sprintf(path, pathValues...), url.Values{}} return request{c, fmt.Sprintf(path, pathValues...), url.Values{}}
} }