Skip to content

Commit 6ab5d64

Browse files
committed
reorg files
1 parent 41b004d commit 6ab5d64

File tree

40 files changed

+36
-36
lines changed

40 files changed

+36
-36
lines changed

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"python.testing.pytestArgs": [
3-
"tests"
3+
"app"
44
],
55
"python.testing.unittestEnabled": false,
66
"python.testing.pytestEnabled": true,
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from typing import Callable, Iterable, Protocol
2-
from src.domain.issue import Issue
2+
from app.domain.issue import Issue
33

44
class IssueRepository(Protocol):
55
# or get
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
from loguru import logger
44

5-
from src.core.ports.repositories.issues import IssueRepository
6-
from src.domain.issue import Issue
7-
from src.interface_adapters.exceptions import NotFoundException
5+
from app.core.ports.repositories.issues import IssueRepository
6+
from app.domain.issue import Issue
7+
from app.interface_adapters.exceptions import NotFoundException
88

99

1010
class AnalyzeIssue(Protocol):
File renamed without changes.

0 commit comments

Comments
 (0)