(fm fs.FunctionManager, path string)
| 131 | } |
| 132 | |
| 133 | func NewFunctionStoreImpl(fm fs.FunctionManager, path string) (FunctionStore, error) { |
| 134 | return &FunctionStoreImpl{ |
| 135 | fm: fm, |
| 136 | path: path, |
| 137 | }, nil |
| 138 | } |
| 139 | |
| 140 | type FunctionStoreDisabled struct { |
| 141 | } |
no outgoing calls