14 lines
265 B
Go
14 lines
265 B
Go
package base
|
|
|
|
// SKBuiltinStringT
|
|
// @description: 字符串类型
|
|
type SKBuiltinStringT struct {
|
|
String string `json:"string"`
|
|
}
|
|
|
|
// SKBuiltinBufferT
|
|
// @description: 二进制数据类型
|
|
type SKBuiltinBufferT struct {
|
|
Buffer []byte `json:"buffer,omitempty"`
|
|
}
|