From 3aaf5c09ede724ac84486caae1f71d46790b28dc Mon Sep 17 00:00:00 2001 From: alessio Date: Fri, 19 Aug 2016 01:10:01 +0200 Subject: [PATCH] app pointer --- realize/app.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/realize/app.go b/realize/app.go index 038677b..e50a7a3 100644 --- a/realize/app.go +++ b/realize/app.go @@ -33,8 +33,8 @@ type App struct { } // Init is an instance of app with default values -func Init() App { - return App{ +func Init() *App { + return &App{ Name: AppName, Version: AppVersion, Description: AppDescription,