#!/usr/bin/env nu
#
# Copyright (c) 2025 ZettaScale Technology
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# ZettaScale Zenoh Team, <zenoh@zettascale.tech>
#
# Commands to interact with Zenoh liveliness.
#
# You must use one of the following subcommands. Using this command as-is will only produce this help message.
export def "zenoh liveliness" [] {
help zenoh liveliness
}
# Commands to manage Zenoh runtimes.
#
# You must use one of the following subcommands. Using this command as-is will only produce this help message.
export def "zenoh runtime" [] {
help zenoh runtime
}
# Commands to decode Zenoh protocol messages.
#
# You must use one of the following subcommands. Using this command as-is will only produce this help message.
export def "zenoh decode" [] {
help zenoh decode
}
# Commands to parse Zenoh protocol values.
#
# You must use one of the following subcommands. Using this command as-is will only produce this help message.
export def "zenoh parse" [] {
help zenoh parse
}
# Short form of `zenoh liveliness`.
#
# You must use one of the following subcommands. Using this command as-is will only produce this help message.
export def "z liveliness" [] {
help z liveliness
}
# Short form of `zenoh runtime`.
#
# You must use one of the following subcommands. Using this command as-is will only produce this help message.
export def "z runtime" [] {
help z runtime
}
# Short form of `zenoh decode`.
#
# You must use one of the following subcommands. Using this command as-is will only produce this help message.
export def "z decode" [] {
help z decode
}
# Short form of `zenoh parse`.
#
# You must use one of the following subcommands. Using this command as-is will only produce this help message.
export def "z parse" [] {
help z parse
}