현 상태를 친구에게 공개

This commit is contained in:
2023-09-22 18:32:23 +09:00
parent 343f69d662
commit ad90f63694
4 changed files with 77 additions and 61 deletions

View File

@ -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)
}