mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-11-04 01:51:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			345 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			345 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build tools
 | 
						|
// +build tools
 | 
						|
 | 
						|
package tools
 | 
						|
 | 
						|
import (
 | 
						|
	_ "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"
 | 
						|
)
 |