<img width="801" alt="Image" src="https://github.com/user-attachments/assets/23cd836d-f63d-4ab2-b3b0-74731c74ad94" /> This may be a bug, I have repeatedly executed this command without this file. ```proto syntax = "proto3"; package helloworld; option go_package = "./;pb"; // HelloRequest is hello request. message HelloRequest { string msg = 1; } // HelloResponse is hello response. message HelloResponse { string msg = 1; } // HelloWorldService handles hello request and echo message. service HelloWorldService { // Hello says hello. rpc Hello(HelloRequest) returns(HelloResponse); } ``` I will place this file in the proto directory of my local project