Coverage for backpack/config/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.2.2, created at 2023-03-30 23:12 +0000

1''' This module contains code to standardize the configuration of Panorama applications via 

2deploy-time parameters. It also contains a CLI (command-line interface) that generates 

3configuration snippets for the metadata and descriptor json files of your Panorama project. 

4''' 

5 

6from .tool import cli 

7from .config import ConfigBase 

8from .serde import ( 

9 ConfigSerDeBase, IntegerListSerDe, StringListSerDe, JsonSerDe, TimeDeltaSecondsSerDe 

10)