Support query lookup for Java servers

This commit is contained in:
Jacob Gunther
2023-04-18 00:38:55 -05:00
parent 2ea126daed
commit 30311f200a
5 changed files with 223 additions and 122 deletions

View File

@@ -230,3 +230,8 @@ func ScaleImageNearestNeighbor(img image.Image, sx, sy int) image.Image {
return out
}
// PointerOf returns a pointer of the argument passed.
func PointerOf[T any](v T) *T {
return &v
}