diff --git a/pkg/utils/returnApiOutput.go b/pkg/utils/returnApiOutput.go deleted file mode 100644 index 8020908..0000000 --- a/pkg/utils/returnApiOutput.go +++ /dev/null @@ -1,22 +0,0 @@ -/* -·━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━· -: : -: █▀ █ █▀▀ · Blazing-fast pentesting suite : -: ▄█ █ █▀ · BSD 3-Clause License : -: : -: (c) 2022-2025 vmfunc (Celeste Hickenlooper), xyzeva, : -: lunchcat alumni & contributors : -: : -·━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━· -*/ - -package utils - -import ( - "fmt" -) - -func ReturnApiOutput() { - const data = `{"key": "value"}` - fmt.Println(data) -}