Files
GeminiKeyManagement/main.py

13 lines
374 B
Python

"""
This script is the entry point for the Gemini Key Management application.
It imports the main function from the `gemini_key_manager` package and executes it.
This allows the application to be run as a script, while the core logic
is organized within the `gemini_key_manager` package.
"""
from gemini_key_manager.main import main
if __name__ == "__main__":
main()