20 lines
458 B
Protocol Buffer
20 lines
458 B
Protocol Buffer
// Copyright (C) 2023 The Licensing Authors
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
//
|
|
// 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 licenses.v1;
|
|
|
|
option go_package = "code.pitz.tech/licensing/api-go/licenses/v1;licensesv1";
|
|
|
|
service LicenseService {
|
|
|
|
}
|