الملفات
GitPasha-MCP-Server/helpers/headers.py

11 أسطر
225 B
Python

import os
def get_headers():
api_key = os.getenv("GITPASHA_API_KEY", "")
return {
"Authorization": f"token {api_key}",
"Content-Type": "application/json",
"Accept": "application/json",
}