Files
sonr/third_party/proto/common/v1/uri.proto
T

17 lines
258 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package common.v1;
option go_package = "github.com/onsonr/sonr/pkg/common/types;commonv1";
message URI {
enum URIProtocol {
HTTPS = 0;
IPFS = 1;
IPNS = 2;
DID = 3;
}
URIProtocol protocol = 1;
string value = 2;
}