From 3b3bab528bca8f2e6596e90d692e7e4560e04636 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, 15 Apr 2023 20:37:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0string=E6=B3=9B=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- string.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 string.go diff --git a/string.go b/string.go new file mode 100644 index 0000000..559cbef --- /dev/null +++ b/string.go @@ -0,0 +1,17 @@ +// Package op_type ... +// +// Description : op_type ... +// +// Author : go_developer@163.com<白茶清欢> +// +// Date : 2023-04-15 20:36 +package op_type + +// String ... +// +// Author : go_developer@163.com<白茶清欢> +// +// Date : 20:37 2023/4/15 +type String interface { + []byte | string | []uint8 +}