mirror of
https://github.com/weewx/weewx.git
synced 2026-04-18 08:36:54 -04:00
16 lines
368 B
Python
16 lines
368 B
Python
#
|
|
# Copyright (c) 2019-2021 Tom Keffer <tkeffer@gmail.com>
|
|
#
|
|
# See the file LICENSE.txt for your full rights.
|
|
#
|
|
|
|
#
|
|
#
|
|
# See the file LICENSE.txt for your rights.
|
|
#
|
|
"""Register a minimal subparser for purposes of providing a response to 'weectl --help'. """
|
|
|
|
|
|
def add_subparser(subparsers):
|
|
subparsers.add_parser('device', help="Manage your hardware.")
|