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:
parent
2294a57ffd
commit
c787eba20e
|
|
@ -40,7 +40,7 @@ message UpdateArtistRequest {
|
|||
}
|
||||
|
||||
message UpdateArtistResponse {
|
||||
Artist Artist = 1;
|
||||
Artist artist = 1;
|
||||
}
|
||||
|
||||
message DeleteArtistRequest {
|
||||
|
|
|
|||
Loading…
Reference in New Issue