SessionStore returns the session store for browsing/loading sessions. Returns nil if no session store is configured.
()
| 1143 | // SessionStore returns the session store for browsing/loading sessions. |
| 1144 | // Returns nil if no session store is configured. |
| 1145 | func (a *App) SessionStore() session.Store { |
| 1146 | return a.runtime.SessionStore() |
| 1147 | } |
| 1148 | |
| 1149 | // ReplaceSession replaces the current session with the given session. |
| 1150 | // This is used when loading a past session. It also re-emits startup info |
nothing calls this directly
no test coverage detected