1
2
3
4
5
6
7
8
9
import { fetch } from "https://esm.town/v/std/fetch";
import { pushDeerKey } from "https://esm.town/v/LavaC/pushDeerKey";
export let sendToPushDeer = async (msg = "this is a test msg") => {
let key = pushDeerKey;
await fetch(
`https://api2.pushdeer.com/message/push?pushkey=${key}&text=${msg}`
);
};