mirror of
https://github.com/not-lucky/GeminiKeyManagement.git
synced 2025-12-06 08:44:01 +05:30
13 lines
374 B
Python
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()
|