mirror of
https://github.com/mii443/RustySecrets.git
synced 2025-08-22 16:25:32 +00:00
12 lines
174 B
Protocol Buffer
12 lines
174 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
enum RustySecretsVersions {
|
|
INITIAL_RELEASE = 0;
|
|
}
|
|
|
|
message RustySecret {
|
|
RustySecretsVersions version = 1;
|
|
bytes secret = 2;
|
|
string mime_type = 3;
|
|
}
|