コード例 #1
0
ファイル: god_cli.go プロジェクト: rhino1998/god
func first(conn *client.Conn, args []string) {
	if key, value, existed := conn.First([]byte(args[1])); existed {
		fmt.Println(string(key), "=>", decode(value))
	}
}