mirror of
				https://github.com/grafana/grafana.git
				synced 2025-02-25 18:55:37 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			182 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			182 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build ignore
 | 
						|
 | 
						|
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"log"
 | 
						|
	"os"
 | 
						|
 | 
						|
	"github.com/grafana/grafana/pkg/build"
 | 
						|
)
 | 
						|
 | 
						|
func main() {
 | 
						|
	log.SetOutput(os.Stdout)
 | 
						|
	log.SetFlags(0)
 | 
						|
	os.Exit(build.RunCmd())
 | 
						|
}
 |