From 2dedd0b702c03c708b816f00017b1a54d84dfa08 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Sun, 3 Jan 2021 20:20:44 +1100 Subject: [PATCH] Expose Store --- v2/wails.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/v2/wails.go b/v2/wails.go index 4c395dec8..65b1503bf 100644 --- a/v2/wails.go +++ b/v2/wails.go @@ -11,6 +11,9 @@ import ( // Runtime is an alias for the runtime.Runtime struct type Runtime = runtime.Runtime +// Store is an alias for the Store object +type Store = runtime.Store + // CreateAppWithOptions creates an application based on the given config func CreateAppWithOptions(options *options.App) (*app.App, error) { return app.CreateApp(options)