******************** AMPATH MEF_ELine Kytos NApp********************

Repository can be found at
https://github.com/kytos/mef_eline


A user manual, and installation guide can be found in the Appendix D
of the project documentation.

We modified the following files:

 - kytos/mef_eline/ui/k-info-panel/list_connections.kytos
 - kytos/mef_eline/ui/k-toolbar/main.kytos

The following tree represents the Directory Structure for our project

.
├── CHANGELOG.rst
├── exceptions.py
├── __init__.py
├── kytos.json
├── kytos_mef_eline.egg-info
│   ├── dependency_links.txt
│   ├── not-zip-safe
│   ├── PKG-INFO
│   ├── requires.txt
│   ├── SOURCES.txt
│   └── top_level.txt
├── LICENSE
├── main.py
├── MANIFEST.in
├── models.py
├── openapi.yml
├── __pycache__
│   ├── __init__.cpython-36.pyc
│   ├── __init__.cpython-38.pyc
│   ├── main.cpython-38.pyc
│   ├── models.cpython-38.pyc
│   ├── scheduler.cpython-38.pyc
│   ├── settings.cpython-38.pyc
│   └── storehouse.cpython-38.pyc
├── README.rst
├── request.json.example
├── requirements
│   ├── dev.in
│   ├── dev.txt
│   └── run.in
├── scheduler.py
├── settings.py
├── setup.cfg
├── setup.py
├── storehouse.py
├── tests
│   ├── helpers.py
│   ├── __init__.py
│   ├── __pycache__
│   │   └── __init__.cpython-36.pyc
│   └── unit
│       ├── __init__.py
│       ├── models
│       │   ├── __init__.py
│       │   ├── __pycache__
│       │   │   ├── __init__.cpython-36.pyc
│       │   │   ├── test_evc_base.cpython-36-pytest-6.1.1.pyc
│       │   │   ├── test_evc_deploy.cpython-36-pytest-6.1.1.pyc
│       │   │   ├── test_link_protection.cpython-36-pytest-6.1.1.pyc
│       │   │   └── test_path.cpython-36-pytest-6.1.1.pyc
│       │   ├── test_evc_base.py
│       │   ├── test_evc_deploy.py
│       │   ├── test_link_protection.py
│       │   └── test_path.py
│       ├── __pycache__
│       │   ├── __init__.cpython-36.pyc
│       │   ├── test_main.cpython-36-pytest-6.1.1.pyc
│       │   └── test_scheduler.cpython-36-pytest-6.1.1.pyc
│       ├── test_main.py
│       └── test_scheduler.py
├── tox.ini
└── ui
    ├── k-info-panel
    │   └── list_connections.kytos
    └── k-toolbar
        └── main.kytos