Skip to content

Commit

Permalink
update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
shrimalmadhur committed Jan 7, 2025
1 parent c3a0c3b commit 3d65f16
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions pkg/api/v1/key_manager.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions proto/key_manager.proto
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ message GetKeyMetadataResponse {
string public_key_g1 = 1;
// Public key G2
string public_key_g2 = 2;
// Create at timestamp
// Unix timestamp of when the key was created
int64 created_at = 3;
// Updated at timestamp
// Unix timestamp of when the key was last updated
int64 updated_at = 4;
}
4 changes: 2 additions & 2 deletions src/generated/keymanager.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ pub struct GetKeyMetadataResponse {
/// Public key G2
#[prost(string, tag = "2")]
pub public_key_g2: ::prost::alloc::string::String,
/// Create at timestamp
/// Unix timestamp of when the key was created
#[prost(int64, tag = "3")]
pub created_at: i64,
/// Updated at timestamp
/// Unix timestamp of when the key was last updated
#[prost(int64, tag = "4")]
pub updated_at: i64,
}
Expand Down
4 changes: 2 additions & 2 deletions swagger/grpc.swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,11 @@ definitions:
createdAt:
type: string
format: int64
title: Create at timestamp
title: Unix timestamp of when the key was created
updatedAt:
type: string
format: int64
title: Updated at timestamp
title: Unix timestamp of when the key was last updated
v1ImportKeyRequest:
type: object
properties:
Expand Down

0 comments on commit 3d65f16

Please sign in to comment.