This commit is contained in:
邹宗楠
2022-06-08 14:52:46 +08:00
parent cac838e8ee
commit 80c079db4e
3 changed files with 19 additions and 1 deletions

15
services/list_test.go Normal file
View File

@@ -0,0 +1,15 @@
package services
import (
"fmt"
"sort"
"testing"
)
func Test_list(b *testing.T) {
//aa := []string{"app_key", "format", "jd_param_json", "timestamp", "token", "v"}
aa := []string{"format", "jd_param_json", "app_key", "timestamp", "token", "v"}
fmt.Println(aa)
sort.Strings(aa)
fmt.Println(aa)
}