UNPKG

selfbot-discord

Version:
12 lines (9 loc) • 234 B
const Action = require('./Action'); class UserGetAction extends Action { handle(data) { const client = this.client; const user = client.dataManager.newUser(data); return { user }; } } module.exports = UserGetAction;