(store session.Store)
| 414 | } |
| 415 | |
| 416 | func WithSessionStore(store session.Store) Opt { |
| 417 | return func(r *LocalRuntime) { |
| 418 | r.sessionStore = store |
| 419 | } |
| 420 | } |
| 421 | |
| 422 | // WithWorkingDir sets the working directory for hooks execution |
| 423 | func WithWorkingDir(dir string) Opt { |
no outgoing calls