Skip to content

Commit

Permalink
Merge branch 'main' into issue-231
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanratcliffe authored Jul 15, 2024
2 parents 7e33c0a + d3c4902 commit bd9e101
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions snapshots.proto
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ service SnapshotsService {
rpc GetSnapshot(GetSnapshotRequest) returns (GetSnapshotResponse);
rpc UpdateSnapshot(UpdateSnapshotRequest) returns (UpdateSnapshotResponse);
rpc DeleteSnapshot(DeleteSnapshotRequest) returns (DeleteSnapshotResponse);
rpc ListSnapshotByGUN(ListSnapshotsByGUNRequest) returns (ListSnapshotsByGUNResponse);
}

///////////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -121,3 +122,11 @@ message GetInitialDataResponse {
Snapshot blastRadiusSnapshot = 1;
bookmarks.Bookmark changingItemsBookmark = 2;
}

message ListSnapshotsByGUNRequest {
string globallyUniqueName = 1;
}

message ListSnapshotsByGUNResponse {
repeated bytes UUIDs = 1;
}

0 comments on commit bd9e101

Please sign in to comment.