mirror of
https://github.com/beego/bee.git
synced 2024-11-22 10:10:53 +00:00
routes fixed to routers
This commit is contained in:
parent
88be60060e
commit
2ff8323c11
@ -259,8 +259,8 @@ func createapi(cmd *Command, args []string) {
|
||||
os.Mkdir(path.Join(apppath, "controllers"), 0755)
|
||||
fmt.Println("create controllers:", path.Join(apppath, "controllers"))
|
||||
os.Mkdir(path.Join(apppath, "models"), 0755)
|
||||
fmt.Println(path.Join(apppath, "routes") + string(path.Separator))
|
||||
os.Mkdir(path.Join(apppath, "routes"), 0755)
|
||||
fmt.Println(path.Join(apppath, "routers") + string(path.Separator))
|
||||
os.Mkdir(path.Join(apppath, "routers"), 0755)
|
||||
fmt.Println("create models:", path.Join(apppath, "models"))
|
||||
os.Mkdir(path.Join(apppath, "tests"), 0755)
|
||||
fmt.Println("create tests:", path.Join(apppath, "tests"))
|
||||
|
6
new.go
6
new.go
@ -37,7 +37,7 @@ The [appname] folder has following structure:
|
||||
|- controllers
|
||||
|- default.go
|
||||
|- models
|
||||
|- routes
|
||||
|- routers
|
||||
|- router.go
|
||||
|- tests
|
||||
|- default_test.go
|
||||
@ -106,8 +106,8 @@ func createApp(cmd *Command, args []string) {
|
||||
fmt.Println(path.Join(apppath, "controllers") + string(path.Separator))
|
||||
os.Mkdir(path.Join(apppath, "models"), 0755)
|
||||
fmt.Println(path.Join(apppath, "models") + string(path.Separator))
|
||||
os.Mkdir(path.Join(apppath, "routes"), 0755)
|
||||
fmt.Println(path.Join(apppath, "routes") + string(path.Separator))
|
||||
os.Mkdir(path.Join(apppath, "routers"), 0755)
|
||||
fmt.Println(path.Join(apppath, "routers") + string(path.Separator))
|
||||
os.Mkdir(path.Join(apppath, "tests"), 0755)
|
||||
fmt.Println(path.Join(apppath, "tests") + string(path.Separator))
|
||||
os.Mkdir(path.Join(apppath, "static"), 0755)
|
||||
|
Loading…
Reference in New Issue
Block a user