const Discord = require('discord.js')
const os = require('os')
var speedTest = require('speedtest-net');
exports.run = (client, message) => {
var osType = os.type();
if (osType === 'Darwin') osType = 'macOS'
else if (osType === 'Windows') osType = 'Windows'
else if (osType === 'Linux')...