Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
490 changes: 490 additions & 0 deletions .gitignore

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions MySolution.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Api", "src\Api\Api.csproj", "{4A967206-0565-4E15-BE8D-DC76C8470FA4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core", "src\Core\Core.csproj", "{CD553728-FD2F-45D1-8826-137A14A06321}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Infrastructure", "src\Infrastructure\Infrastructure.csproj", "{003ABA45-4054-40A1-AD23-B1D195637534}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Application", "src\Application\Application.csproj", "{FB477A56-5919-4F07-9BA6-5E9C6E8ACD8F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4A967206-0565-4E15-BE8D-DC76C8470FA4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4A967206-0565-4E15-BE8D-DC76C8470FA4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4A967206-0565-4E15-BE8D-DC76C8470FA4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4A967206-0565-4E15-BE8D-DC76C8470FA4}.Release|Any CPU.Build.0 = Release|Any CPU
{CD553728-FD2F-45D1-8826-137A14A06321}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CD553728-FD2F-45D1-8826-137A14A06321}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CD553728-FD2F-45D1-8826-137A14A06321}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CD553728-FD2F-45D1-8826-137A14A06321}.Release|Any CPU.Build.0 = Release|Any CPU
{003ABA45-4054-40A1-AD23-B1D195637534}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{003ABA45-4054-40A1-AD23-B1D195637534}.Debug|Any CPU.Build.0 = Debug|Any CPU
{003ABA45-4054-40A1-AD23-B1D195637534}.Release|Any CPU.ActiveCfg = Release|Any CPU
{003ABA45-4054-40A1-AD23-B1D195637534}.Release|Any CPU.Build.0 = Release|Any CPU
{FB477A56-5919-4F07-9BA6-5E9C6E8ACD8F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FB477A56-5919-4F07-9BA6-5E9C6E8ACD8F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FB477A56-5919-4F07-9BA6-5E9C6E8ACD8F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FB477A56-5919-4F07-9BA6-5E9C6E8ACD8F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
Empty file removed app/__init__.py
Empty file.
Binary file removed app/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file removed app/__pycache__/crud.cpython-312.pyc
Binary file not shown.
Binary file removed app/__pycache__/database.cpython-312.pyc
Binary file not shown.
Binary file removed app/__pycache__/initial_data.cpython-312.pyc
Binary file not shown.
Binary file removed app/__pycache__/main.cpython-312.pyc
Binary file not shown.
Binary file removed app/__pycache__/models.cpython-312.pyc
Binary file not shown.
Binary file removed app/__pycache__/schemas.cpython-312.pyc
Binary file not shown.
114 changes: 0 additions & 114 deletions app/create_tables.py

This file was deleted.

Loading