1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | mytest/
├── config.yaml
├── hooks
│ ├── actions.py
│ ├── config-changed
│ ├── install
│ ├── services.py
│ ├── setup.py
│ ├── start
│ ├── stop
│ └── upgrade-charm
├── icon.svg
├── metadata.yaml
├── README.example
├── templates
│ └── upstart.conf
├── tests
│ ├── 00-setup
│ └── 10-deploy
└── unit_tests
└── test_actions.py
4 directories, 16 files
|