From 1c67df1742000e13b82d4d6f3d63d39a2bbaf0be Mon Sep 17 00:00:00 2001 From: alessio Date: Thu, 18 Aug 2016 17:40:39 +0200 Subject: [PATCH] init return changed --- realize/app.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/realize/app.go b/realize/app.go index e50a7a3..038677b 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,