Skip to content

Commit

Permalink
update import paths to syreclabs.com
Browse files Browse the repository at this point in the history
  • Loading branch information
dmgk committed Jun 5, 2018
1 parent 7fef81c commit f42e331
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ Faker is a library for generating fake data such as names, addresses, and phone

It is a (mostly) API-compatible port of Ruby Faker gem (https://github.com/stympy/faker) to Go.

[![GoDoc](https://godoc.org/github.com/dmgk/faker?status.svg)](https://godoc.org/github.com/dmgk/faker)
[![GoDoc](https://godoc.org/syreclabs.com/go/faker?status.svg)](https://godoc.org/syreclabs.com/go/faker)
[![Build Status](https://travis-ci.org/dmgk/faker.svg?branch=master)](https://travis-ci.org/dmgk/faker)
[![Coverage Status](https://coveralls.io/repos/github/dmgk/faker/badge.svg)](https://coveralls.io/github/dmgk/faker)

To install

go get -u github.com/dmgk/faker
go get -u syreclabs.com/go/faker

## Usage

Expand Down
1 change: 1 addition & 0 deletions cmd/generate.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// +build ignore

package main

import (
Expand Down
2 changes: 1 addition & 1 deletion faker.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"strings"
"time"

"github.com/dmgk/faker/locales"
"syreclabs.com/go/faker/locales"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module "github.com/dmgk/faker"
module "syreclabs.com/go/faker"
2 changes: 1 addition & 1 deletion hacker.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func capitalize(s string) string {
//
// import (
// "fmt"
// "github.com/dmgk/faker"
// "syreclabs.com/go/faker"
// )
//
// func main() {
Expand Down
2 changes: 1 addition & 1 deletion phone_number_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"regexp"
"testing"

"github.com/dmgk/faker/locales"
"syreclabs.com/go/faker/locales"
)

func TestPhoneNumberPhoneNumber(t *testing.T) {
Expand Down

0 comments on commit f42e331

Please sign in to comment.