diff --git a/runtime/store.go b/runtime/store.go index ff024d7b6..b89dac6db 100644 --- a/runtime/store.go +++ b/runtime/store.go @@ -291,3 +291,8 @@ func (s *Store) Update(updater interface{}) { s.errorHandler(err) } } + +// Get returns the value of the data that's kept in the current state / Store +func (s *Store) Get() interface{} { + return s.data +}