initial
This commit is contained in:
commit
20ec3a02c8
15
licensing/contributors/v1/service.proto
Normal file
15
licensing/contributors/v1/service.proto
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
//
|
||||||
|
// This file attempts to follow common styles and design patterns described by
|
||||||
|
// Google Cloud based on their extensive use of protocol buffers.
|
||||||
|
//
|
||||||
|
// - See here for more: https://cloud.google.com/apis/design/design_patterns
|
||||||
|
//
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package licensing.contributors.v1;
|
||||||
|
|
||||||
|
option go_package = "code.pitz.tech/licensing/api-go/contributors/v1;contributorsv1";
|
||||||
|
|
||||||
|
service ContributorService {
|
||||||
|
|
||||||
|
}
|
15
licensing/licenses/v1/service.proto
Normal file
15
licensing/licenses/v1/service.proto
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
//
|
||||||
|
// This file attempts to follow common styles and design patterns described by
|
||||||
|
// Google Cloud based on their extensive use of protocol buffers.
|
||||||
|
//
|
||||||
|
// - See here for more: https://cloud.google.com/apis/design/design_patterns
|
||||||
|
//
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package licensing.licenses.v1;
|
||||||
|
|
||||||
|
option go_package = "code.pitz.tech/licensing/api-go/licenses/v1;licensesv1";
|
||||||
|
|
||||||
|
service LicenseService {
|
||||||
|
|
||||||
|
}
|
15
licensing/packages/v1/service.proto
Normal file
15
licensing/packages/v1/service.proto
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
//
|
||||||
|
// This file attempts to follow common styles and design patterns described by
|
||||||
|
// Google Cloud based on their extensive use of protocol buffers.
|
||||||
|
//
|
||||||
|
// - See here for more: https://cloud.google.com/apis/design/design_patterns
|
||||||
|
//
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package licensing.packages.v1;
|
||||||
|
|
||||||
|
option go_package = "code.pitz.tech/licensing/api-go/packages/v1;packagesv1";
|
||||||
|
|
||||||
|
service PackageService {
|
||||||
|
|
||||||
|
}
|
15
licensing/products/v1/service.proto
Normal file
15
licensing/products/v1/service.proto
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
//
|
||||||
|
// This file attempts to follow common styles and design patterns described by
|
||||||
|
// Google Cloud based on their extensive use of protocol buffers.
|
||||||
|
//
|
||||||
|
// - See here for more: https://cloud.google.com/apis/design/design_patterns
|
||||||
|
//
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package licensing.products.v1;
|
||||||
|
|
||||||
|
option go_package = "code.pitz.tech/licensing/api-go/products/v1;productsv1";
|
||||||
|
|
||||||
|
service ProductService {
|
||||||
|
|
||||||
|
}
|
24
licensing/users/v1/service.proto
Normal file
24
licensing/users/v1/service.proto
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
//
|
||||||
|
// This file attempts to follow common styles and design patterns described by
|
||||||
|
// Google Cloud based on their extensive use of protocol buffers.
|
||||||
|
//
|
||||||
|
// - See here for more: https://cloud.google.com/apis/design/design_patterns
|
||||||
|
//
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package licensing.users.v1;
|
||||||
|
|
||||||
|
option go_package = "code.pitz.tech/licensing/api-go/users/v1;usersv1";
|
||||||
|
|
||||||
|
import "google/protobuf/empty.proto";
|
||||||
|
|
||||||
|
message SignupRequest {}
|
||||||
|
message SignupResponse {}
|
||||||
|
|
||||||
|
message CurrentResponse {}
|
||||||
|
|
||||||
|
service UserService {
|
||||||
|
rpc Signup(SignupRequest) returns (SignupResponse);
|
||||||
|
|
||||||
|
rpc Current(google.protobuf.Empty) returns (CurrentResponse);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user