aboutsummaryrefslogtreecommitdiff
path: root/internal/exec/wmi/module.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/exec/wmi/module.go')
-rw-r--r--internal/exec/wmi/module.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/exec/wmi/module.go b/internal/exec/wmi/module.go
index f90af42..0e83aa8 100644
--- a/internal/exec/wmi/module.go
+++ b/internal/exec/wmi/module.go
@@ -16,7 +16,7 @@ type Module struct {
sc iwbemservices.ServicesClient
}
-type MethodCustomConfig struct {
+type MethodCallConfig struct {
Class string
Method string
Arguments map[string]any
@@ -28,6 +28,6 @@ type MethodProcessConfig struct {
}
const (
- MethodCustom = "custom"
+ MethodCall = "call"
MethodProcess = "process"
)