Skip to content

Commit

Permalink
changing module name
Browse files Browse the repository at this point in the history
  • Loading branch information
paganotoni committed Apr 2, 2022
1 parent fa07c64 commit 8e88275
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ builds:
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X "github.com/markbates/refresh.Version={{.Tag}}"
- -s -w -X "github.com/gobuffalo/refresh.Version={{.Tag}}"
goos:
- darwin
- linux
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This simple command line application will watch your files, trigger a build of y
## Installation

```
$ go get github.com/markbates/refresh
$ go get github.com/gobuffalo/refresh
```

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/markbates/refresh/refresh"
"github.com/gobuffalo/refresh/refresh"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"
"os"

"github.com/markbates/refresh/refresh"
"github.com/gobuffalo/refresh/refresh"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/markbates/refresh
module github.com/gobuffalo/refresh

go 1.17

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import "github.com/markbates/refresh/cmd"
import "github.com/gobuffalo/refresh/cmd"

func main() {
cmd.Execute()
Expand Down
2 changes: 1 addition & 1 deletion refresh/watcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"time"

"github.com/markbates/refresh/filenotify"
"github.com/gobuffalo/refresh/filenotify"
)

type Watcher struct {
Expand Down
2 changes: 1 addition & 1 deletion refresh/web/web.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"io/ioutil"
"net/http"

"github.com/markbates/refresh/refresh"
"github.com/gobuffalo/refresh/refresh"
)

var id = refresh.ID()
Expand Down
4 changes: 2 additions & 2 deletions shoulders.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# github.com/markbates/refresh Stands on the Shoulders of Giants
# github.com/gobuffalo/refresh Stands on the Shoulders of Giants

github.com/markbates/refresh does not try to reinvent the wheel! Instead, it uses the already great wheels developed by the Go community and puts them all together in the best way possible. Without these giants, this project would not be possible. Please make sure to check them out and thank them for all of their hard work.
github.com/gobuffalo/refresh does not try to reinvent the wheel! Instead, it uses the already great wheels developed by the Go community and puts them all together in the best way possible. Without these giants, this project would not be possible. Please make sure to check them out and thank them for all of their hard work.

Thank you to the following **GIANTS**:

Expand Down

0 comments on commit 8e88275

Please sign in to comment.