mirror of https://github.com/grafana/grafana.git
10 lines
127 B
Go
10 lines
127 B
Go
|
|
package commands
|
||
|
|
|
||
|
|
import (
|
||
|
|
"errors"
|
||
|
|
)
|
||
|
|
|
||
|
|
func upgradeCommand(c CommandLine) error {
|
||
|
|
return errors.New("Not yet Implemented")
|
||
|
|
}
|