diff options
author | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-03-10 06:45:04 -0500 |
---|---|---|
committer | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-03-10 06:45:04 -0500 |
commit | ab141f2076b141bf885f56cb5730252cc2880041 (patch) | |
tree | 752ef3d91a59f039ab2d80e8f65e24b4d062dff8 /internal/exec/scmr/module.go | |
parent | b3c69a1559e2876820f4b07f3ef0f47b467f5d26 (diff) | |
download | goexec-ab141f2076b141bf885f56cb5730252cc2880041.tar.gz goexec-ab141f2076b141bf885f56cb5730252cc2880041.zip |
Fix `scmr delete`
Diffstat (limited to 'internal/exec/scmr/module.go')
-rw-r--r-- | internal/exec/scmr/module.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/exec/scmr/module.go b/internal/exec/scmr/module.go index 2a2d378..0372668 100644 --- a/internal/exec/scmr/module.go +++ b/internal/exec/scmr/module.go @@ -36,3 +36,9 @@ type MethodChangeConfig struct { NoStart bool ServiceName string } + +type CleanupMethodDeleteConfig struct { + ServiceNames []string +} + +type CleanupMethodRevertConfig struct{} |