├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── sliver ├── __init__.py └── cli.py └── tests └── shots.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjackson/sliver/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjackson/sliver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjackson/sliver/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjackson/sliver/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sliver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sliver/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjackson/sliver/HEAD/sliver/cli.py -------------------------------------------------------------------------------- /tests/shots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anjackson/sliver/HEAD/tests/shots.yml --------------------------------------------------------------------------------