| 46 | ) |
| 47 | |
| 48 | type Server struct { |
| 49 | options *serverOptions |
| 50 | httpSvr atomic.Pointer[http.Server] |
| 51 | log *common.Logger |
| 52 | Manager fs.FunctionManager |
| 53 | FunctionStore FunctionStore |
| 54 | } |
| 55 | |
| 56 | type TubeLoaderType func(c *FactoryConfig) (contube.TubeFactory, error) |
| 57 | type RuntimeLoaderType func(c *FactoryConfig) (api.FunctionRuntimeFactory, error) |
nothing calls this directly
no outgoing calls
no test coverage detected