Skip to content

Commit

Permalink
Merge pull request #23 from takumi-pro/feature/update-message
Browse files Browse the repository at this point in the history
テスト
  • Loading branch information
ryohei0309 authored Dec 31, 2023
2 parents 9f1d4e0 + 3505689 commit 1e02c7c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,5 @@ go.work
.env
tmp/
mysql-data
output
output
.idea/
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ require (
github.com/magefile/mage v1.15.0
github.com/magiconair/properties v1.8.7
github.com/oapi-codegen/runtime v1.1.0
gorm.io/driver/mysql v1.5.2
gorm.io/gorm v1.25.5
)

require (
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
gorm.io/driver/mysql v1.5.2 // indirect
gorm.io/gorm v1.25.5 // indirect
)

require (
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type TestResponse struct {

func (s Server) GetApiEvent(ctx echo.Context, params openapi.GetApiEventParams) error {
return ctx.JSON(http.StatusOK, TestResponse{
Message: "get events",
Message: "get events & search",
})
}

Expand Down

0 comments on commit 1e02c7c

Please sign in to comment.