Skip to content

Commit 4727959

Browse files
author
Eric Camplin
committed
AccelerateDevGHCopilotPython folder structure to match C#
Library moved below with .gitignore added
1 parent edaffc0 commit 4727959

126 files changed

Lines changed: 272 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*.pyo
5+
*.pyd
6+
7+
# C extensions
8+
*.so
9+
10+
# Distribution / packaging
11+
.Python
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
27+
# Virtual environments
28+
.env/
29+
.venv/
30+
env/
31+
venv/
32+
ENV/
33+
ENV*/
34+
35+
# PyInstaller
36+
*.manifest
37+
*.spec
38+
39+
# Unit test / coverage / pytest
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.pytest_cache/
51+
test-results/
52+
junit-*.xml
53+
54+
# Jupyter Notebook
55+
.ipynb_checkpoints/
56+
57+
# mypy
58+
.mypy_cache/
59+
.dmypy.json
60+
61+
# Pyre type checker
62+
.pyre/
63+
64+
# Pyright type checker
65+
.pyrightcache/
66+
67+
# VS Code settings
68+
.vscode/

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/entities/author.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/entities/author.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/entities/book.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/entities/book.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/entities/book_item.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/entities/book_item.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/entities/loan.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/entities/loan.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/entities/patron.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/entities/patron.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/enums/loan_extension_status.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/enums/loan_extension_status.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/enums/loan_return_status.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/enums/loan_return_status.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/enums/membership_renewal_status.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/enums/membership_renewal_status.py

File renamed without changes.

DownloadableCodeProjects/az-2007-m2-explain-document-python/library/application_core/interfaces/iloan_repository.py renamed to DownloadableCodeProjects/az-2007-m2-explain-document-python/AccelerateDevGHCopilotPython/library/application_core/interfaces/iloan_repository.py

File renamed without changes.

0 commit comments

Comments
 (0)