Skip to content

Commit

Permalink
chore(deps): Updating the module name to be lower case (#40)
Browse files Browse the repository at this point in the history
* Updating the module name to be lower case

* fmt
  • Loading branch information
Jacobbrewer1 authored Oct 20, 2024
1 parent 4c443ac commit 7037cc6
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/basic/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

"github.com/Jacobbrewer1/patcher"
"github.com/jacobbrewer1/patcher"
)

type Person struct {
Expand Down
2 changes: 1 addition & 1 deletion examples/http/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"net/http"
"strconv"

"github.com/Jacobbrewer1/patcher"
"github.com/gorilla/mux"
"github.com/jacobbrewer1/patcher"
)

type Person struct {
Expand Down
2 changes: 1 addition & 1 deletion examples/joiner/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

"github.com/Jacobbrewer1/patcher"
"github.com/jacobbrewer1/patcher"
)

type Person struct {
Expand Down
2 changes: 1 addition & 1 deletion examples/loader/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/Jacobbrewer1/patcher"
"github.com/jacobbrewer1/patcher"
)

type Something struct {
Expand Down
2 changes: 1 addition & 1 deletion examples/loader_sql/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/Jacobbrewer1/patcher"
"github.com/jacobbrewer1/patcher"
)

type Something struct {
Expand Down
2 changes: 1 addition & 1 deletion examples/where_type/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"

"github.com/Jacobbrewer1/patcher"
"github.com/jacobbrewer1/patcher"
)

type Person struct {
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/Jacobbrewer1/patcher
module github.com/jacobbrewer1/patcher

go 1.22

Expand Down

0 comments on commit 7037cc6

Please sign in to comment.