Create Akka HTTP from protobuf file

Hi,

This is a proto file

package tests;


 service HalloController{        
    rpc Hallo (HelloInApi) returns (HelloOutApi) {
        option (google.api.http) = {
           post: "/v1/hello"
           body: "blob"
       };
    }                
}


message HelloInApi{
     string name = 1 [(scalapb.field).no_box = true];
}
message HelloOutApi {
     string greeting = 1 [(scalapb.field).no_box = true];

}

Is it possible to generate full akka http server/client artifacts from proto file?
So, after generation I can use any http/rest client and just call /v1/hello ?

akka-grpc should be used I think.

I’ve called /v1/hello9 from curl and browser but without success. Meybe google.api.http annotations are not supported?

rpc Hallo9 (google.protobuf.Empty) returns (HelloOutApi) {
                   option (google.api.http) = {
                  get:"/v1/hello9"           
          };
    }                    
    
}