mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
293 B
Protocol Buffer
13 lines
293 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package memos.apiv2;
|
|
|
|
option go_package = "gen-go/apiv2";
|
|
|
|
// Person is a simple message type containing information about a person.
|
|
// It is an example of the kind of message that one might define in a protobufs file.
|
|
message Person {
|
|
string name = 1;
|
|
int32 id = 2;
|
|
}
|