From ba0af0c16dc693a151ce306c3a6111fa92d2dd24 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Mon, 31 Aug 2020 21:17:04 +1000 Subject: [PATCH] Lint fix! --- app.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app.go b/app.go index e5591614..67e9acec 100644 --- a/app.go +++ b/app.go @@ -21,9 +21,14 @@ import ( // BuildMode indicates what mode we are in var BuildMode = cmd.BuildModeProd +// Runtime is the Go Runtime struct type Runtime = wailsruntime.Runtime + +// Store is a state store used for syncing with +// the front end type Store = wailsruntime.Store +// CustomLogger is a specialised logger type CustomLogger = logger.CustomLogger // ----------------------------------------------------------------------------------