file = (await fetch(
`https://api.github.com/repos/${OWNER}/${REPO}/contents/${PATH}`,
{
headers: {
authorization: `token ${Secret("GITHUB_ACCESS_TOKEN")}`,
accept: "application/vnd.github.v3+json",
["X-GitHub-Api-Version"]: "2022-11-28"
}
}
)).json()