Invalid config check

This commit is contained in:
世界
2022-07-03 01:57:04 +08:00
parent ad01befeee
commit add5896378
16 changed files with 276 additions and 162 deletions

View File

@@ -2,7 +2,7 @@ package option
import "encoding/json"
type Listable[T any] []T
type Listable[T comparable] []T
func (l *Listable[T]) MarshalJSON() ([]byte, error) {
arrayList := []T(*l)