Get retrieves a value from the State.
(key string)
| 39 | |
| 40 | // Get retrieves a value from the State. |
| 41 | func (s *State) Get(key string) (any, bool) { |
| 42 | return s.dependencies.Load(key) |
| 43 | } |
| 44 | |
| 45 | // MustGet retrieves a value from the State and panics if the key is not found. |
| 46 | func (s *State) MustGet(key string) any { |