mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-05 22:52:46 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
15 lines
259 B
Protocol Buffer
15 lines
259 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package zitadel.v1;
|
|
|
|
option go_package = "github.com/zitadel/zitadel/pkg/grpc/message";
|
|
|
|
message ErrorDetail {
|
|
string id = 1;
|
|
string message = 2;
|
|
}
|
|
|
|
message LocalizedMessage {
|
|
string key = 1;
|
|
string localized_message = 2;
|
|
} |