You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
crate/log/logsdk/field.go

8 lines
128 B
Go

1 year ago
package logsdk
// Field 是日志记录中的键值对
type Field struct {
Value any `json:"v"`
Key string `json:"k"`
}