UNPKG

marsy.js

Version:

Marsy.Live için tasarlanmış bir API yönetim uygulamasıdır. Bu modül ise kolay bir şekilde kullanımını sağlamaktadır.

26 lines (12 loc) 438 B
const { Client, GuildTypes } = require('../index'); const marsy = new Client({ license: "ACOS" }) marsy.on('ready', async () => { console.log("Marsy.Live - Client Açıldı!"); const guild = await marsy.guilds.fetch("1159591958730248343"); const user = await marsy.users.fetch("963116893693157426"); const data = await user.getGuild(guild); console.log(data) }) marsy.login()