1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4# Copyright (c) 2020-2021 Huawei Device Co., Ltd.
5#
6# HDF is dual licensed: you can use it either under the terms of
7# the GPL, or the BSD license, at your option.
8# See the LICENSE file in the root of this repository for complete details.
9
10
11from .hdf_command_handler_base import HdfCommandHandlerBase
12
13
14class HdfPingHandler(HdfCommandHandlerBase):
15    def __init__(self, args):
16        super(HdfPingHandler, self).__init__()
17        self.args = args
18
19    def run(self):
20        return "I'm here!"
21