Skip to content

Commit

Permalink
change module, re compatibility with dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
verzth committed Jan 20, 2021
1 parent a0a6e9a commit 9a29151
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Jumper is Go Module to help Developer handling HTTP Request & Response.

```bash
go get github.com/verzth/jumper
go get git.teknoku.digital/teknoku/jumper
```

##### Usage
Expand Down Expand Up @@ -92,7 +92,7 @@ package mypackage

import (
// SOME PACKAGES
"github.com/verzth/jumper"
"git.teknoku.digital/teknoku/jumper"
// SOME PACKAGES
)

Expand Down
2 changes: 1 addition & 1 deletion demo/Demo.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package main

import (
"fmt"
"git.teknoku.digital/teknoku/jumper"
"github.com/gorilla/handlers"
"github.com/gorilla/mux"
"github.com/verzth/jumper"
"net/http"
)

Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module github.com/verzth/jumper
module git.teknoku.digital/teknoku/jumper

go 1.13

require (
git.teknoku.digital/teknoku/go-utils v0.3.0 // indirect
github.com/gorilla/handlers v1.4.2
github.com/gorilla/mux v1.7.4
github.com/verzth/go-utils v0.2.2
)
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
git.teknoku.digital/teknoku/go-utils v0.3.0 h1:TFPRQETiisuVH9zH1Tf2P9qNA/Iruzj5b4eNk4THZwk=
git.teknoku.digital/teknoku/go-utils v0.3.0/go.mod h1:AUowhIIOVBH2U99quLWkFRYab47bf6sX0n1UPqpOHVo=
github.com/gorilla/handlers v1.4.2 h1:0QniY0USkHQ1RGCLfKxeNHK9bkDHGRYGNDFBCS+YARg=
github.com/gorilla/handlers v1.4.2/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ=
github.com/gorilla/mux v1.7.3 h1:gnP5JzjVOuiZD07fKKToCAOjS0yOpj/qPETTXCCS6hw=
Expand Down
2 changes: 1 addition & 1 deletion request.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"encoding/json"
"errors"
"fmt"
"git.teknoku.digital/teknoku/go-utils/utils"
"github.com/gorilla/mux"
"github.com/verzth/go-utils/utils"
"io"
"io/ioutil"
"mime/multipart"
Expand Down

0 comments on commit 9a29151

Please sign in to comment.