Fix JSON.

This commit is contained in:
Nuno Cruces
2023-11-09 16:16:48 +00:00
parent 828788912e
commit 591480cd39
3 changed files with 14 additions and 23 deletions

View File

@@ -11,4 +11,4 @@ func Pointer[T any](val T) any {
type pointer[T any] struct{ val T }
func (p pointer[T]) Value() any { return p.val }
func (p pointer[T]) Pointer() any { return p.val }