You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
218 B
Python
10 lines
218 B
Python
11 months ago
|
from config import music_path
|
||
|
from ui import UIEngine
|
||
|
from database import Database
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
# Add your main code here
|
||
|
db = Database(base_path=music_path)
|
||
|
ui = UIEngine(db)
|
||
|
ui.run()
|