https://github.com/grafana/grafana
Raw File
Tip revision: 875e68afb6700db4b5b42b06f9881c8d580cfd02 authored by Gilles De Mey on 08 June 2023, 09:26:45 UTC
cleanup datasource.tsx
Tip revision: 875e68a
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