mirror of
https://github.com/usememos/memos.git
synced 2025-02-23 21:05:36 +08:00
* feat: add proto and buf configuration files * chore: buf generate * chore: update comments * chore: go mod tidy
12 lines
293 B
Protocol Buffer
12 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;
|
|
}
|