forked from infobloxopen/atlas-gentool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.go
32 lines (29 loc) · 1.31 KB
/
tools.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//go:build tools
// +build tools
package main
import (
_ "github.com/chrusty/protoc-gen-jsonschema/cmd/protoc-gen-jsonschema"
_ "github.com/envoyproxy/protoc-gen-validate"
_ "github.com/ghodss/yaml"
_ "github.com/go-openapi/spec"
_ "github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
_ "github.com/mwitkow/go-proto-validators"
_ "github.com/mwitkow/go-proto-validators/protoc-gen-govalidators"
_ "github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc"
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
_ "google.golang.org/protobuf/types/known/emptypb"
_ "google.golang.org/protobuf/types/known/structpb"
_ "github.com/infobloxopen/atlas-app-toolkit/gorm"
_ "github.com/infobloxopen/atlas-app-toolkit/query"
_ "github.com/infobloxopen/atlas-app-toolkit/rpc/errdetails"
_ "github.com/infobloxopen/atlas-app-toolkit/rpc/errfields"
_ "github.com/infobloxopen/atlas-app-toolkit/rpc/resource"
_ "github.com/infobloxopen/protoc-gen-atlas-query-validate"
_ "github.com/infobloxopen/protoc-gen-atlas-validate"
_ "github.com/infobloxopen/protoc-gen-atlas-validate/runtime"
_ "github.com/infobloxopen/protoc-gen-gorm"
_ "github.com/infobloxopen/protoc-gen-gorm/errors"
_ "github.com/infobloxopen/protoc-gen-gorm/types"
_ "github.com/infobloxopen/protoc-gen-preprocess"
)