From a5d1cb28214975b86c0e556fb5edbc991a947421 Mon Sep 17 00:00:00 2001 From: 1nv8rZim Date: Wed, 13 Sep 2023 12:06:26 -0400 Subject: [PATCH] add options parameter --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 6914a82..a113e98 100644 --- a/main.go +++ b/main.go @@ -7,7 +7,7 @@ import ( "strings" ) -func Run(ctx context.Context, target string, command string, expectedOutput string, username string, password string) (bool, string) { +func Run(ctx context.Context, target string, command string, expectedOutput string, username string, password string, options map[string]interface{}) (bool, string) { // Set up the custom resolver with the provided DNS server deadline, ok := ctx.Deadline() if !ok {