0
Google Endpoints 애플리케이션을 작성 중이며 protobuf 객체를 내 @Api
클래스에 반환하고 싶습니다. Google 엔드 포인트에서 protobuf를 사용하는 방법
@Api(...)
public class CityApi {
public List<MainProto.City> getCities() {
return new ArrayList<MainProto.City>();
}
}