refactor: cleanup Corrosion container on reset, move admin socket to runtime dir

This commit is contained in:
Pasha Sviderski
2026-05-25 21:41:35 +10:00
parent 71da32549a
commit 442b5c62bf
5 changed files with 87 additions and 22 deletions
+2
View File
@@ -16,6 +16,8 @@ type Service interface {
Start(ctx context.Context) error
Stop(ctx context.Context) error
Restart(ctx context.Context) error
// Cleanup tears down the underlying service resources.
Cleanup(ctx context.Context) error
Running() bool
}