Files
lti-api/vendor/github.com/gofiber/fiber/v2/utils/deprecated.go
T
GitLab Deploy Bot ad815b3412 .
2025-10-23 11:40:58 +07:00

17 lines
337 B
Go

package utils
// Deprecated: Please use UnsafeString instead
func GetString(b []byte) string {
return UnsafeString(b)
}
// Deprecated: Please use UnsafeBytes instead
func GetBytes(s string) []byte {
return UnsafeBytes(s)
}
// Deprecated: Please use CopyString instead
func ImmutableString(s string) string {
return CopyString(s)
}