9 lines
164 B
Protocol Buffer
9 lines
164 B
Protocol Buffer
|
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
|
||
|
|
||
|
syntax = "proto3";
|
||
|
package identity;
|
||
|
|
||
|
message Address {
|
||
|
string address = 1;
|
||
|
}
|