social media crossposting tool. 3rd time's the charm
mastodon misskey crossposting bluesky

create data directory if it does not exist

zenfyr.dev b560b9ed 8dce71f5

verified
Changed files
+3
+3
main.py
···
}
def execute(data_dir):
+
if not os.path.exists(data_dir):
+
os.makedirs(data_dir)
+
settings_path = os.path.join(data_dir, 'settings.json')
database_path = os.path.join(data_dir, 'data.db')