diff --git a/app.py b/app.py index cfecc5e..4940c45 100644 --- a/app.py +++ b/app.py @@ -1,6 +1,6 @@ """Entry-point for running the Flask development server.""" -from gen_photo_alt_text import create_app +from station_announcer import create_app app = create_app() diff --git a/gen_photo_alt_text/__init__.py b/station_announcer/__init__.py similarity index 100% rename from gen_photo_alt_text/__init__.py rename to station_announcer/__init__.py diff --git a/gen_photo_alt_text/cache.py b/station_announcer/cache.py similarity index 100% rename from gen_photo_alt_text/cache.py rename to station_announcer/cache.py diff --git a/gen_photo_alt_text/config.py b/station_announcer/config.py similarity index 100% rename from gen_photo_alt_text/config.py rename to station_announcer/config.py diff --git a/gen_photo_alt_text/immich.py b/station_announcer/immich.py similarity index 100% rename from gen_photo_alt_text/immich.py rename to station_announcer/immich.py diff --git a/gen_photo_alt_text/mastodon.py b/station_announcer/mastodon.py similarity index 100% rename from gen_photo_alt_text/mastodon.py rename to station_announcer/mastodon.py diff --git a/gen_photo_alt_text/openai_client.py b/station_announcer/openai_client.py similarity index 100% rename from gen_photo_alt_text/openai_client.py rename to station_announcer/openai_client.py diff --git a/gen_photo_alt_text/routes.py b/station_announcer/routes.py similarity index 100% rename from gen_photo_alt_text/routes.py rename to station_announcer/routes.py