| 38 | } |
| 39 | |
| 40 | type FunctionStoreImpl struct { |
| 41 | mu sync.Mutex |
| 42 | fm fs.FunctionManager |
| 43 | path string |
| 44 | loadedFunctions map[string]*model.Function |
| 45 | loadingFunctions map[string]*model.Function |
| 46 | } |
| 47 | |
| 48 | func (f *FunctionStoreImpl) Load() error { |
| 49 | f.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected