Create main module

This commit is contained in:
Jared Rossberg
2021-10-24 11:15:41 -06:00
parent 5b6a41ef70
commit 69f59bb0f6
3 changed files with 7 additions and 6 deletions

4
src/__main__.py Normal file
View File

@@ -0,0 +1,4 @@
from app import client
if __name__ == '__main__':
client()

View File

@@ -167,6 +167,3 @@ def search(search_term):
else:
download_playlist(playlists, position - total_tracks - total_albums - total_artists)
if __name__ == '__main__':
client()