1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import process from "node:process";
import { fetchJSON } from "https://esm.town/v/stevekrouse/fetchJSON";
export let untitled_scarletHoverfly = fetchJSON(
"https://api.val.town/v1/eval",
{
method: "POST",
body: JSON.stringify({
code: "let evalVal1 = @me.example1",
}),
headers: {
Authorization: `Bearer ${process.env.valtown}`,
},
},
);