import { RateLimitManager } from "@purrkit/ratelimit";
import { RESTClient } from "@purrkit/rest";
import { TOKEN } from "../constants";
const limiter = new RateLimitManager({});
export const rest = RESTClient({
token: TOKEN,
fetch: limiter.fetch,
});
|