https://github.com/grafana/grafana
Raw File
Tip revision: c0af1d3828ce7b52c1e2f393402b57e6e20ca0a0 authored by grafanabot on 16 June 2023, 14:38:05 UTC
"Release: Updated versions in package to 10.1.0"
Tip revision: c0af1d3
build.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())
}
back to top