- Go: v1.18
- MySQL: 8.x
make dev
oapi-codegenを利用し、APIスキーマ駆動で開発を行う
OASを編集し、エンドポイントを追加し以下のコマンドを実行すると、gen/api以下にAPIサーバーコード(server.gen.go)が生成される
make gen-api
生成されたコードのインターフェースを満たすようにapp/handlerでServerのメソッドを実装する
curl -XPOST -H "Content-Type:application/json" -d '{"id": "c3cf4b9a-7316-4a41-bf60-194080cbe682", "name": "hoghoge"}' localhost:8080/rooms
curl -XPUT \
-H "Content-Type:application/json" \
-d '{"name": "gehohoge"}' localhost:8080/rooms/c3cf4b9a-7316-4a41-bf60-194080cbe682
curl -XDELETE \
localhost:8080/rooms/c3cf4b9a-7316-4a41-bf60-194080cbe682
curl -XPOST \
-H "Content-Type:application/json" \
-d '{"id": "c3cf4b9a-7316-4a41-bf60-194080cbe682", "name": "hoghoge"}' localhost:8080/rooms/c3cf4b9a-7316-4a41-bf60-194080cbe682/members
curl -XDELETE \
-H "Content-Type:application/json" \
localhost:8080/rooms/c3cf4b9a-7316-4a41-bf60-194080cbe682/members/c3cf4b9a-7316-4a41-bf60-194080cbe682
eventAt
curl -XPOST \
-H 'Content-Type:application/json' \
-d '{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"eventType": "outer",
"amount": 0,
"eventAt": "2021-05-31T16:27:35+09:00",
"txns": [
{
"amount": 0,
"receiver": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"payer": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
]
}' \
localhost:8080/rooms/c3cf4b9a-7316-4a41-bf60-194080cbe682/events
curl -XDELETE \
-H "Content-Type:application/json" \
localhost:8080/rooms/c3cf4b9a-7316-4a41-bf60-194080cbe682/events/3fa85f64-5717-4562-b3fc-2c963f66afa6
curl -XPUT \
-H 'Content-Type:application/json' \
-d '{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"eventType": "outer",
"amount": 0,
"eventAt": "2021-05-31T16:27:35+09:00",
"txns": [
{
"amount": 0,
"receiver": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"payer": "3fa85f64-5717-4562-b3fc-2c963f66afa7",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
]
}' \
localhost:8080/rooms/c3cf4b9a-7316-4a41-bf60-194080cbe682/events/3fa85f64-5717-4562-b3fc-2c963f66afa6
curl -XGET localhost:8080/rooms/c3cf4b9a-7316-4a41-bf60-194080cbe682