15 lines
324 B
TypeScript
15 lines
324 B
TypeScript
|
/*
|
||
|
* Vencord, a Discord client mod
|
||
|
* Copyright (c) 2024 nin0dev
|
||
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
*/
|
||
|
|
||
|
import { Devs } from "@utils/constants";
|
||
|
import definePlugin from "@utils/types";
|
||
|
|
||
|
export default definePlugin({
|
||
|
name: "InRole",
|
||
|
description: "Know who is in a role",
|
||
|
authors: [Devs.nin0dev],
|
||
|
});
|