From 2c7002f57a051ede9ff8dd9c8760cc80bb3d41c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Sat, 14 Oct 2023 16:12:53 +0800 Subject: [PATCH] =?UTF-8?q?base=20type=20=E6=94=AF=E6=8C=81any?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- base.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base.go b/base.go index 77eaa4f..8dae28a 100644 --- a/base.go +++ b/base.go @@ -13,5 +13,5 @@ package op_type // // Date : 11:25 2023/6/13 type BaseType interface { - int | int8 | int16 | int32 | int64 | uint | uint8 | uint16 | uint32 | uint64 | float32 | float64 | bool | string + any | int | int8 | int16 | int32 | int64 | uint | uint8 | uint16 | uint32 | uint64 | float32 | float64 | bool | string }