| 41 | } |
| 42 | |
| 43 | type ServingRun interface { |
| 44 | Run(s *openfunction.Serving, cm map[string]string) error |
| 45 | // Result get the serving result. |
| 46 | // '' means serving is starting. |
| 47 | // `Running` means serving is running. |
| 48 | // Other means serving failed. |
| 49 | Result(s *openfunction.Serving) (string, string, string, error) |
| 50 | // Clean all resources which created by serving. |
| 51 | Clean(s *openfunction.Serving) error |
| 52 | } |
no outgoing calls
no test coverage detected