fix: fix release date type

This commit is contained in:
Sergey Krylov 2026-04-10 06:05:56 +03:00
parent 11c023a530
commit 6a9e991782

View File

@ -36,7 +36,7 @@ message Movie {
string slug = 3;
string poster = 4;
int32 rating_age = 5;
google.protobuf.Timestamp timestamp = 6;
google.protobuf.Timestamp release_date = 6;
}
message MovieDetails {
@ -49,5 +49,5 @@ message MovieDetails {
int32 duration = 7;
int32 rating_age = 8;
string country = 9;
google.protobuf.Timestamp timestamp = 10;
google.protobuf.Timestamp release_date = 10;
}