mirror of
https://github.com/grafana/grafana.git
synced 2024-11-21 16:38:03 -06:00
d913e46e37
* move build command to importable package & clean up
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())
|
|
}
|