blob: 4bb5aca820e0854fcadd080faa95a4acef732938 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// This file is part of Macy <https://github.com/Fuwn/macy>.
// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// All Rights Reserved.
//
// Copyright (C) 2022-2022 Fuwn <[email protected]>
// SPDX-License-Identifier: UNLICENSED
import { Macy } from "./macy.ts";
import { config } from "https://deno.land/x/[email protected]/mod.ts";
import { GatewayIntents } from "https://deno.land/x/[email protected]/mod.ts";
(new Macy()).connect(config().TOKEN, [
GatewayIntents.GUILD_MEMBERS,
]);
|