-
Notifications
You must be signed in to change notification settings - Fork 1
♻️ Merge discstore folder into jukebox #249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
4bc5cc3
81d5cfa
4548931
9890518
dd1f606
5571e3f
16f567b
aa45c74
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| from discstore.domain.entities import Disc | ||
| from jukebox.domain.entities import Disc | ||
|
|
||
| MAX_COL_WIDTH = 20 | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,12 @@ | ||
| import logging | ||
|
|
||
| from discstore.adapters.inbound.cli_display import display_library_line, display_library_table | ||
| from discstore.domain.entities import CurrentTagStatus, Disc, DiscMetadata, DiscOption | ||
| from discstore.domain.use_cases.add_disc import AddDisc | ||
| from discstore.domain.use_cases.edit_disc import EditDisc | ||
| from discstore.domain.use_cases.get_current_tag_status import GetCurrentTagStatus | ||
| from discstore.domain.use_cases.list_discs import ListDiscs | ||
| from discstore.domain.use_cases.remove_disc import RemoveDisc | ||
| from jukebox.adapters.inbound.admin.cli_display import display_library_line, display_library_table | ||
| from jukebox.domain.entities import CurrentTagStatus, Disc, DiscMetadata, DiscOption | ||
| from jukebox.domain.use_cases.library.add_disc import AddDisc | ||
| from jukebox.domain.use_cases.library.edit_disc import EditDisc | ||
| from jukebox.domain.use_cases.library.get_current_tag_status import GetCurrentTagStatus | ||
| from jukebox.domain.use_cases.library.list_discs import ListDiscs | ||
| from jukebox.domain.use_cases.library.remove_disc import RemoveDisc | ||
|
|
||
| LOGGER = logging.getLogger("discstore") | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: change name here, too. |
||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit (non-blocking): we may want to change the logger name at some point