This commit is contained in:
Adrien Marquès 2018-10-01 12:36:26 +02:00
parent b6e19c255b
commit 17bb63b9de
1 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ func main() {
clifmt.Title("compile types") clifmt.Title("compile types")
for name, upath := range schema.Types.Map { for name, upath := range schema.Types.Map {
fmt.Printf(" '%s'\n", clifmt.Color(33, name)) fmt.Printf(" [%s]\n", clifmt.Color(33, name))
// Get useful paths // Get useful paths
source := schema.Driver.Source(schema.Root, schema.Types.Folder, upath) source := schema.Driver.Source(schema.Root, schema.Types.Folder, upath)
@ -59,7 +59,7 @@ func main() {
clifmt.Title("compile controllers") clifmt.Title("compile controllers")
for name, upath := range schema.Controllers.Map { for name, upath := range schema.Controllers.Map {
fmt.Printf(" '%s'\n", clifmt.Color(33, name)) fmt.Printf(" [%s]\n", clifmt.Color(33, name))
// Get useful paths // Get useful paths
source := schema.Driver.Source(schema.Root, schema.Controllers.Folder, upath) source := schema.Driver.Source(schema.Root, schema.Controllers.Folder, upath)
@ -75,7 +75,7 @@ func main() {
clifmt.Title("compile middlewares") clifmt.Title("compile middlewares")
for name, upath := range schema.Middlewares.Map { for name, upath := range schema.Middlewares.Map {
fmt.Printf(" '%s'\n", clifmt.Color(33, name)) fmt.Printf(" [%s]\n", clifmt.Color(33, name))
// Get useful paths // Get useful paths
source := schema.Driver.Source(schema.Root, schema.Middlewares.Folder, upath) source := schema.Driver.Source(schema.Root, schema.Middlewares.Folder, upath)