mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 19:14:19 +08:00
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")
|
|
}
|