diff --git a/src/music_kraken/database/read.py b/src/music_kraken/database/read.py new file mode 100644 index 0000000..e69de29 diff --git a/src/music_kraken/database/write.py b/src/music_kraken/database/write.py new file mode 100644 index 0000000..279b895 --- /dev/null +++ b/src/music_kraken/database/write.py @@ -0,0 +1,19 @@ +from typing import Union +from peewee import ( + SqliteDatabase, + MySQLDatabase, + PostgresqlDatabase, +) + +from . import objects + +# just a Type for type hintung. You can't do anything with it. +Database = Union[SqliteDatabase, PostgresqlDatabase, MySQLDatabase] + + +class Session: + """ + do the thingie with the with keyword + overload __end__ and maybe __start__ i dunfckinnow + """ + pass