Skip to content

Commit

Permalink
Update import paths to github.com/pressly/fresh
Browse files Browse the repository at this point in the history
  • Loading branch information
VojtechVitek committed Jul 25, 2016
1 parent cf6b27f commit 257ccaa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ It has been tested with:

## Installation

go get github.com/c2h5oh/fresh
go get github.com/pressly/fresh

## Usage

Expand Down
2 changes: 1 addition & 1 deletion _examples/gocraft-web/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"net/http"

"github.com/c2h5oh/fresh/runner/runnerutils"
"github.com/gocraft/web"
"github.com/pressly/fresh/runner/runnerutils"
)

func runnerMiddleware(rw web.ResponseWriter, req *web.Request, next web.NextMiddlewareFunc) {
Expand Down
2 changes: 1 addition & 1 deletion _examples/martini/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"net/http"
"os"

"github.com/c2h5oh/fresh/runner/runnerutils"
"github.com/codegangsta/martini"
"github.com/pressly/fresh/runner/runnerutils"
)

func runnerMiddleware(w http.ResponseWriter, r *http.Request) {
Expand Down
2 changes: 1 addition & 1 deletion _examples/pilu-martini/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/c2h5oh/martini"
"github.com/go-martini/martini"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ package main
import (
"flag"

"github.com/c2h5oh/fresh/runner"
"github.com/pressly/fresh/runner"
)

func main() {
Expand Down

0 comments on commit 257ccaa

Please sign in to comment.