2023-08-21 16:04:04 +00:00
|
|
|
// Copyright 2023 Peridot Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2023-08-21 16:01:10 +00:00
|
|
|
package peridot
|
|
|
|
|
|
|
|
import (
|
|
|
|
// grpc-gateway
|
|
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway"
|
2023-08-25 16:45:28 +00:00
|
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2"
|
2023-08-21 16:01:10 +00:00
|
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
|
2023-08-21 23:38:49 +00:00
|
|
|
// api-linter
|
|
|
|
_ "github.com/googleapis/api-linter/cmd/api-linter"
|
2023-08-22 00:43:49 +00:00
|
|
|
// ibazel
|
|
|
|
_ "github.com/bazelbuild/bazel-watcher/cmd/ibazel"
|
2023-08-22 16:08:20 +00:00
|
|
|
// temporalite
|
|
|
|
_ "github.com/temporalio/temporalite/cmd/temporalite"
|
2023-08-23 00:58:08 +00:00
|
|
|
// dex
|
|
|
|
_ "github.com/dexidp/dex/cmd/dex"
|
2023-08-24 07:13:50 +00:00
|
|
|
// addlicense
|
|
|
|
_ "github.com/google/addlicense"
|
2023-08-21 16:01:10 +00:00
|
|
|
)
|