generate all protobuf and embed.go files in CI

This commit is contained in:
Willy Kloucek
2021-02-16 15:44:06 +01:00
parent 0726156f1b
commit aed03b5bf5
57 changed files with 1092 additions and 2976 deletions
+29 -1
View File
@@ -1,6 +1,34 @@
syntax = "proto3";
package proto;
option go_package = "pkg/proto/v0;proto";
package store;
import "protoc-gen-openapiv2/options/annotations.proto";
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_swagger) = {
info: {
title: "ownCloud Infinite Scale store";
version: "1.0.0";
contact: {
name: "ownCloud GmbH";
url: "https://github.com/owncloud/ocis";
email: "support@owncloud.com";
};
license: {
name: "Apache-2.0";
url: "https://github.com/owncloud/ocis/blob/master/LICENSE";
};
};
schemes: HTTP;
schemes: HTTPS;
consumes: "application/json";
produces: "application/json";
external_docs: {
description: "Developer Manual";
url: "https://owncloud.github.io/extensions/store/";
};
};
service Store {
rpc Read(ReadRequest) returns (ReadResponse) {};