-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
233 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# Generated with protoc-gen-openapi | ||
# https://github.com/google/gnostic/tree/master/cmd/protoc-gen-openapi | ||
|
||
openapi: 3.0.3 | ||
info: | ||
title: ChatService API | ||
version: 0.0.1 | ||
paths: | ||
/api/chats: | ||
post: | ||
tags: | ||
- ChatService | ||
operationId: ChatService_CreateChatRoom | ||
requestBody: | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/CreateChatRoomRequest' | ||
required: true | ||
responses: | ||
"200": | ||
description: OK | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/CreateChatRoomResponse' | ||
default: | ||
description: Default error response | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/Status' | ||
components: | ||
schemas: | ||
ChatRoom: | ||
type: object | ||
properties: | ||
id: | ||
type: string | ||
name: | ||
type: string | ||
createdAt: | ||
type: string | ||
format: date-time | ||
CreateChatRoomRequest: | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
CreateChatRoomResponse: | ||
type: object | ||
properties: | ||
chatRoom: | ||
$ref: '#/components/schemas/ChatRoom' | ||
GoogleProtobufAny: | ||
type: object | ||
properties: | ||
'@type': | ||
type: string | ||
description: The type of the serialized message. | ||
additionalProperties: true | ||
description: Contains an arbitrary serialized message along with a @type that describes the type of the serialized message. | ||
Status: | ||
type: object | ||
properties: | ||
code: | ||
type: integer | ||
description: The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code]. | ||
format: int32 | ||
message: | ||
type: string | ||
description: A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client. | ||
details: | ||
type: array | ||
items: | ||
$ref: '#/components/schemas/GoogleProtobufAny' | ||
description: A list of messages that carry the error details. There is a common set of message types for APIs to use. | ||
description: 'The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).' | ||
tags: | ||
- name: ChatService |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
syntax = "proto3"; | ||
package chat; | ||
|
||
import "google/protobuf/timestamp.proto"; | ||
import "google/api/annotations.proto"; | ||
|
||
option go_package = "internal/chat"; | ||
|
||
message ChatRoom { | ||
string id = 1; | ||
string name = 2; | ||
google.protobuf.Timestamp created_at = 3; | ||
} | ||
|
||
message CreateChatRoomRequest { | ||
string name = 1; | ||
} | ||
|
||
message CreateChatRoomResponse { | ||
ChatRoom chat_room = 1; | ||
} | ||
|
||
service ChatService { | ||
rpc CreateChatRoom(CreateChatRoomRequest) returns (CreateChatRoomResponse) { | ||
option (google.api.http) = { | ||
post: "/api/chats" | ||
body: "*" | ||
}; | ||
} | ||
} |
Submodule googleapis
added at
b3f4e5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters