浏览代码

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 5 年前
父节点
当前提交
993ee50b3d
共有 5 个文件被更改,包括 7 次插入11 次删除
  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 查看文件

@@ -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 查看文件

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

import (
"testing"
)
import "testing"

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


+ 1
- 2
post_test.go 查看文件

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

import (
"testing"

"fmt"
"strings"
"testing"
)

func TestCreatePost(t *testing.T) {


+ 1
- 3
user.go 查看文件

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

import (
"time"
)
import "time"

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


+ 3
- 2
writeas.go 查看文件

@@ -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 (


正在加载...
取消
保存