17 lines
365 B
Protocol Buffer
17 lines
365 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package subreddits.v1;
|
|
|
|
import "buf/validate/validate.proto";
|
|
|
|
option go_package = "github.com/tigorlazuardi/bluemage/go/gen/proto/subreddits/v1";
|
|
|
|
message SubredditExistsRequest {
|
|
// name of the subreddit. Case insensitive.
|
|
string name = 1 [(buf.validate.field).string.min_len = 1];
|
|
}
|
|
|
|
message SubredditExistsResponse {
|
|
bool exist = 1;
|
|
}
|