From 17bb63b9de984c060bd10f4fa911c713c15b5dd7 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Mon, 1 Oct 2018 12:36:26 +0200 Subject: [PATCH] minmod --- cmd/aicra/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/aicra/main.go b/cmd/aicra/main.go index 033f400..060d78c 100644 --- a/cmd/aicra/main.go +++ b/cmd/aicra/main.go @@ -44,7 +44,7 @@ func main() { clifmt.Title("compile types") 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 source := schema.Driver.Source(schema.Root, schema.Types.Folder, upath) @@ -59,7 +59,7 @@ func main() { clifmt.Title("compile controllers") 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 source := schema.Driver.Source(schema.Root, schema.Controllers.Folder, upath) @@ -75,7 +75,7 @@ func main() { clifmt.Title("compile middlewares") 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 source := schema.Driver.Source(schema.Root, schema.Middlewares.Folder, upath)