Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1 from ymmt2005/master
Browse files Browse the repository at this point in the history
Adopt new import paths for Go sub-repositories.
  • Loading branch information
ryokdy committed Nov 10, 2014
2 parents dcbd802 + c68689c commit 052f183
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Install dependencies

$ go get github.com/cybozu/go-kintone
$ go get github.com/howeyc/gopass
$ go get code.google.com/p/go.text/encoding
$ go get golang.org/x/text/encoding

build

Expand Down
11 changes: 6 additions & 5 deletions export.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
package main

import (
"github.com/cybozu/go-kintone"
"code.google.com/p/go.text/transform"
"sort"
"fmt"
"strings"
"time"
"io"
"os"
"sort"
"strings"
"time"

"github.com/cybozu/go-kintone"
"golang.org/x/text/transform"
)


Expand Down
13 changes: 7 additions & 6 deletions import.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
package main

import (
"github.com/cybozu/go-kintone"
"code.google.com/p/go.text/transform"
"fmt"
"strings"
"time"
"encoding/csv"
"fmt"
"io"
"os"
"strconv"
"regexp"
"strings"
"strconv"
"time"

"github.com/cybozu/go-kintone"
"golang.org/x/text/transform"
)

func getReader(file *os.File) io.Reader {
Expand Down
13 changes: 7 additions & 6 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
package main

import (
"code.google.com/p/go.text/encoding"
"code.google.com/p/go.text/encoding/japanese"
"code.google.com/p/go.text/encoding/unicode"
"github.com/cybozu/go-kintone"
"github.com/howeyc/gopass"
"flag"
"log"
"fmt"
"log"
"strings"

"github.com/cybozu/go-kintone"
"github.com/howeyc/gopass"
"golang.org/x/text/encoding"
"golang.org/x/text/encoding/japanese"
"golang.org/x/text/encoding/unicode"
)

type Configure struct {
Expand Down

0 comments on commit 052f183

Please sign in to comment.