Adds New Delete File Endpoint and Refactors Endpoints, Adds VirusChecker

This commit is contained in:
2023-09-10 02:21:41 -03:00
parent ab65be9710
commit c826000954
13 changed files with 149 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
from dotenv import load_dotenv
import os
def get_virus_checker_api_key():
load_dotenv()
return {
"api_key": os.environ.get("VIRUS_CHECKER_API_KEY")
}