Skip to content

Commit

Permalink
Update module imports
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobMcKenzieSmarty committed Sep 3, 2024
1 parent 6babadd commit db99ec1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion handler/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"io"
"strconv"

"calc-lib/calc"
"github.com/JacobMcKenzieSmarty/calc-lib/calc"
)

type Handler struct {
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"log"
"os"

"calc-lib/calc"
"calc-lib/handler"
"github.com/JacobMcKenzieSmarty/calc-lib/calc"
"github.com/JacobMcKenzieSmarty/calc-lib/handler"
)

func main() {
Expand Down

0 comments on commit db99ec1

Please sign in to comment.