mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-31 08:01:34 +01:00 
			
		
		
		
	This commit adds buf as a regular dependency and go running it instead of requiring installing buf to one's own GOBIN.
		
			
				
	
	
		
			14 lines
		
	
	
		
			382 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			382 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //go:build tools
 | |
| // +build tools
 | |
| 
 | |
| package tools
 | |
| 
 | |
| import (
 | |
| 	_ "github.com/bufbuild/buf/cmd/buf"
 | |
| 	_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway"
 | |
| 	_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2"
 | |
| 	_ "github.com/infobloxopen/protoc-gen-gorm"
 | |
| 	_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
 | |
| 	_ "google.golang.org/protobuf/cmd/protoc-gen-go"
 | |
| )
 |