| 18 | ) |
| 19 | |
| 20 | type SeldonBackendAPI interface { |
| 21 | Load(filename string) error |
| 22 | Unload(filename string) error |
| 23 | IsLoaded(filename string) (bool, error) |
| 24 | Infer(filename string, request string) ([]byte, error) |
| 25 | } |
| 26 | |
| 27 | func checkSeldonRunningLocally() (bool, error) { |
| 28 | ctx := context.Background() |
no outgoing calls
no test coverage detected