chore: remove unused utils package

the returnApiOutput function was never used and contained only
hardcoded test data
This commit is contained in:
Celeste Hickenlooper
2026-01-02 22:50:49 -08:00
parent a18a4fae31
commit d7cf882a8d

View File

@@ -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)
}