Fix field name casing in UpdateArtistResponse proto message

Change field name from 'Artist' to 'artist' to follow protobuf naming conventions, which require lowercase field names with underscores for word separation.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Gustavo Henrique Santos Souza de Miranda 2025-12-05 21:48:46 -03:00
parent 2294a57ffd
commit c787eba20e
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ message UpdateArtistRequest {
}
message UpdateArtistResponse {
Artist Artist = 1;
Artist artist = 1;
}
message DeleteArtistRequest {