Explorar el Código

style: Run goimports on everything

Similar to writeas/writeas-cli#22, this change runs goimports on all
files and changes the recommendation in the Contributing section to do
the same.
pull/12/head
Abhinav Gupta hace 5 años
padre
commit
993ee50b3d
Se han modificado 5 ficheros con 7 adiciones y 11 borrados
  1. +1
    -1
      README.md
  2. +1
    -3
      auth_test.go
  3. +1
    -2
      post_test.go
  4. +1
    -3
      user.go
  5. +3
    -2
      writeas.go

+ 1
- 1
README.md Ver fichero

@@ -63,7 +63,7 @@ func main() {

The library covers our usage, but might not be comprehensive of the API. So we always welcome contributions and improvements from the community. Before sending pull requests, make sure you've done the following:

* Run `go fmt` on all updated .go files.
* Run `goimports` on all updated .go files.
* Document all exported structs and funcs.

## License


+ 1
- 3
auth_test.go Ver fichero

@@ -1,8 +1,6 @@
package writeas

import (
"testing"
)
import "testing"

func TestAuthentication(t *testing.T) {
dwac := NewDevClient()


+ 1
- 2
post_test.go Ver fichero

@@ -1,10 +1,9 @@
package writeas

import (
"testing"

"fmt"
"strings"
"testing"
)

func TestCreatePost(t *testing.T) {


+ 1
- 3
user.go Ver fichero

@@ -1,8 +1,6 @@
package writeas

import (
"time"
)
import "time"

type (
// AuthUser represents a just-authenticated user. It contains information


+ 3
- 2
writeas.go Ver fichero

@@ -3,13 +3,14 @@ package writeas

import (
"bytes"
"code.as/core/socks"
"encoding/json"
"fmt"
"github.com/writeas/impart"
"io"
"net/http"
"time"

"code.as/core/socks"
"github.com/writeas/impart"
)

const (


Cargando…
Cancelar
Guardar