Add download url endpoint
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-03-01 16:05:30 -05:00
parent c400d2d58b
commit f248c19b07

View File

@@ -12,8 +12,11 @@ service MapsService {
rpc Delete(MapId) returns (NullResponse);
rpc List(ListRequest) returns (MapList);
rpc IncrementLoadCount(MapId) returns (NullResponse);
rpc GetSnmfDownloadUrl(MapId) returns (SnmfDownloadUrl);
}
message SnmfDownloadUrl { string Url = 1; }
message MapIdList { repeated int64 ID = 1; }
message MapId { int64 ID = 1; }