Skip to content

Commit

Permalink
updated code to fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
sinhashubham95 committed Dec 13, 2021
1 parent 39698c2 commit 5d5b723
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions commons/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const (
// Endpoint Paths
var (
BasePath = "/"
MockEndpointPath = fmt.Sprintf("%smock", MoxyPrefix)
UnMockEndpointPath = fmt.Sprintf("%sunMock", MoxyPrefix)
MockEndpointPath = fmt.Sprintf("%s/mock", MoxyPrefix)
UnMockEndpointPath = fmt.Sprintf("%s/unMock", MoxyPrefix)
)

// MockEntityName is the mock entity name
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "moxy",
"version": "1.0.3"
"version": "1.0.4"
}

0 comments on commit 5d5b723

Please sign in to comment.