23 lines
392 B
Go
23 lines
392 B
Go
|
// Package etcd...
|
||
|
//
|
||
|
// Description : etcd...
|
||
|
//
|
||
|
// Author : go_developer@163.com<白茶清欢>
|
||
|
//
|
||
|
// Date : 2021-11-24 2:11 下午
|
||
|
package etcd
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
// TestDeleteWithKeyPrefix ...
|
||
|
//
|
||
|
// Author : go_developer@163.com<白茶清欢>
|
||
|
//
|
||
|
// Date : 2:11 下午 2021/11/24
|
||
|
func TestDeleteWithKeyPrefix(t *testing.T) {
|
||
|
fmt.Println(DeleteWithKeyPrefix(nil, "/test", 0))
|
||
|
}
|