From 9625bc3d64d500490849cdf64be4fe0cbeb9d007 Mon Sep 17 00:00:00 2001 From: Andriy Kalashnykov Date: Fri, 15 Nov 2024 13:43:10 -0500 Subject: [PATCH 1/2] fix: updated UML for adapter Signed-off-by: Andriy Kalashnykov --- .idea/.gitignore | 8 ++++++++ .idea/go-patterns-2.iml | 9 +++++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ go.work.sum | 1 + structural/1_adapter/file.puml | 8 +++----- 6 files changed, 35 insertions(+), 5 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/go-patterns-2.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/go-patterns-2.iml b/.idea/go-patterns-2.iml new file mode 100644 index 0000000..5e764c4 --- /dev/null +++ b/.idea/go-patterns-2.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..9dfeb21 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/go.work.sum b/go.work.sum index 0a85547..6e91cd0 100644 --- a/go.work.sum +++ b/go.work.sum @@ -1 +1,2 @@ +github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= diff --git a/structural/1_adapter/file.puml b/structural/1_adapter/file.puml index 939bd93..704102a 100644 --- a/structural/1_adapter/file.puml +++ b/structural/1_adapter/file.puml @@ -27,11 +27,9 @@ namespace adapter { } } +"adapter.Analyzer" <|-- "adapter.PowerfulAnalyzer" "adapter.Analyzer" <|-- "adapter.jsonAnalyzerAdapter" - -"adapter.jsonAnalyzerAdapter" ..> "adapter.PowerfulAnalyzer" -"adapter.jsonAnalyzerAdapter" ..> "adapter.Record" - "adapter.Stock" ..> "adapter.Record" - +"adapter.jsonAnalyzerAdapter" ..> "adapter.Record" +"adapter.jsonAnalyzerAdapter" ..> "adapter.PowerfulAnalyzer" @enduml From 73e311e2d15388d10b9206fd98011c34b2e74534 Mon Sep 17 00:00:00 2001 From: Andriy Kalashnykov Date: Fri, 15 Nov 2024 13:45:42 -0500 Subject: [PATCH 2/2] fix: updates Signed-off-by: Andriy Kalashnykov --- .gitignore | 1 + .idea/.gitignore | 8 -------- .idea/go-patterns-2.iml | 9 --------- .idea/modules.xml | 8 -------- .idea/vcs.xml | 6 ------ 5 files changed, 1 insertion(+), 31 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/go-patterns-2.iml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml diff --git a/.gitignore b/.gitignore index 722d5e7..8cd0df3 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .vscode +.idea \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/go-patterns-2.iml b/.idea/go-patterns-2.iml deleted file mode 100644 index 5e764c4..0000000 --- a/.idea/go-patterns-2.iml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 9dfeb21..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1dd..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file