1
0
mirror of https://github.com/beego/bee.git synced 2025-07-05 13:10:18 +00:00

fix issue with new version

This commit is contained in:
astaxie
2016-01-06 11:55:56 +08:00
parent 20d77d9979
commit 807c3de8a7
6 changed files with 36 additions and 16 deletions

19
fix.go Normal file
View File

@ -0,0 +1,19 @@
package main
var cmdFix = &Command{
UsageLine: "fix",
Short: "fix the beego application to compatibel with beego 1.6",
Long: `
As from beego1.6, there's some incompatible code with the old version.
bee fix help to upgrade the application to beego 1.6
`,
}
func init() {
cmdFix.Run = runFix
}
func runFix(cmd *Command, args []string) int {
return 0
}