* Interface for providers that need cleanup on process exit.
| 4 | * Interface for providers that need cleanup on process exit. |
| 5 | */ |
| 6 | interface CleanupProvider { |
| 7 | shutdown(): Promise<void>; |
| 8 | } |
| 9 | |
| 10 | /** |
| 11 | * Global registry of Python providers for cleanup on process exit. |
no outgoing calls
no test coverage detected
searching dependent graphs…