현 상태를 친구에게 공개
This commit is contained in:
@ -5,6 +5,7 @@ import (
|
||||
"context"
|
||||
"encoding/binary"
|
||||
"fmt"
|
||||
"strings"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
@ -61,5 +62,11 @@ func TestNameHash(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestReJSON(t *testing.T) {
|
||||
a := "1:2"
|
||||
b := "1"
|
||||
|
||||
as := strings.SplitN(a, ":", 2)
|
||||
bs := strings.SplitN(b, ":", 2)
|
||||
|
||||
fmt.Println(as, bs)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user