mirror of
https://github.com/grafana/grafana.git
synced 2025-07-23 10:33:09 +08:00
18 lines
200 B
Go
18 lines
200 B
Go
//go:build ignore
|
|
// +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())
|
|
}
|