update vendor/

This commit is contained in:
2026-04-09 12:50:50 +02:00
parent 8b2c1d0390
commit 4d74a68105
3213 changed files with 846966 additions and 6 deletions
+8
View File
@@ -0,0 +1,8 @@
package swag
import "unsafe"
// hackStringBytes returns the (unsafe) underlying bytes slice of a string.
func hackStringBytes(str string) []byte {
return unsafe.Slice(unsafe.StringData(str), len(str))
}