176e6818aSopenharmony_ci#!/usr/bin/env python3 276e6818aSopenharmony_ci# coding=utf-8 376e6818aSopenharmony_ci 476e6818aSopenharmony_ci# 576e6818aSopenharmony_ci# Copyright (c) 2020-2022 Huawei Device Co., Ltd. 676e6818aSopenharmony_ci# Licensed under the Apache License, Version 2.0 (the "License"); 776e6818aSopenharmony_ci# you may not use this file except in compliance with the License. 876e6818aSopenharmony_ci# You may obtain a copy of the License at 976e6818aSopenharmony_ci# 1076e6818aSopenharmony_ci# http://www.apache.org/licenses/LICENSE-2.0 1176e6818aSopenharmony_ci# 1276e6818aSopenharmony_ci# Unless required by applicable law or agreed to in writing, software 1376e6818aSopenharmony_ci# distributed under the License is distributed on an "AS IS" BASIS, 1476e6818aSopenharmony_ci# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 1576e6818aSopenharmony_ci# See the License for the specific language governing permissions and 1676e6818aSopenharmony_ci# limitations under the License. 1776e6818aSopenharmony_ci# 1876e6818aSopenharmony_ci 1976e6818aSopenharmony_cifrom dataclasses import dataclass 2076e6818aSopenharmony_ci 2176e6818aSopenharmony_ci__all__ = ["CKit"] 2276e6818aSopenharmony_ci 2376e6818aSopenharmony_ci 2476e6818aSopenharmony_ci@dataclass 2576e6818aSopenharmony_ciclass CKit: 2676e6818aSopenharmony_ci push = "PushKit" 2776e6818aSopenharmony_ci common_push = "CommonPushKit" 2876e6818aSopenharmony_ci liteinstall = "LiteAppInstallKit" 2976e6818aSopenharmony_ci command = "CommandKit" 3076e6818aSopenharmony_ci config = "ConfigKit" 3176e6818aSopenharmony_ci wifi = "WIFIKit" 3276e6818aSopenharmony_ci propertycheck = 'PropertyCheckKit' 3376e6818aSopenharmony_ci sts = 'STSKit' 3476e6818aSopenharmony_ci shell = "ShellKit" 3576e6818aSopenharmony_ci deploy = 'DeployKit' 3676e6818aSopenharmony_ci mount = 'MountKit' 3776e6818aSopenharmony_ci liteuikit = 'LiteUiKit' 3876e6818aSopenharmony_ci rootfs = "RootFsKit" 3976e6818aSopenharmony_ci liteshell = "LiteShellKit" 4076e6818aSopenharmony_ci app_install = "AppInstallKit" 4176e6818aSopenharmony_ci deploytool = "DeployToolKit" 4276e6818aSopenharmony_ci query = "QueryKit" 4376e6818aSopenharmony_ci component = "ComponentKit" 4476e6818aSopenharmony_ci permission = "PermissionKit" 4576e6818aSopenharmony_ci smartperf = "SmartPerfKit" 46