mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-27 14:18:36 +02:00
Interesting
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
const Command = require('../../framework/Command');
|
const Command = require('../../framework/Command');
|
||||||
const request = require('node-superfetch');
|
const request = require('node-superfetch');
|
||||||
import { parseDomain, ParseResultType } from 'parse-domain';
|
const { parseDomain, ParseResultType } = import('parse-domain');
|
||||||
const { GODADDY_KEY, GODADDY_SECRET } = process.env;
|
const { GODADDY_KEY, GODADDY_SECRET } = process.env;
|
||||||
|
|
||||||
module.exports = class DomainAvailableCommand extends Command {
|
module.exports = class DomainAvailableCommand extends Command {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
const Command = require('../../framework/Command');
|
const Command = require('../../framework/Command');
|
||||||
const request = require('node-superfetch');
|
const request = require('node-superfetch');
|
||||||
import { parseDomain, ParseResultType } from 'parse-domain';
|
const { parseDomain, ParseResultType } = import('parse-domain');
|
||||||
|
|
||||||
module.exports = class IsItDownCommand extends Command {
|
module.exports = class IsItDownCommand extends Command {
|
||||||
constructor(client) {
|
constructor(client) {
|
||||||
|
|||||||
+1
-1
@@ -3,7 +3,7 @@ const crypto = require('crypto');
|
|||||||
const request = require('node-superfetch');
|
const request = require('node-superfetch');
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const tf = require('@tensorflow/tfjs-node');
|
const tf = require('@tensorflow/tfjs-node');
|
||||||
import { parseDomain, ParseResultType } from 'parse-domain';
|
const { parseDomain, ParseResultType } = import('parse-domain');
|
||||||
const { decode: decodeHTML } = require('html-entities');
|
const { decode: decodeHTML } = require('html-entities');
|
||||||
const { stripIndents } = require('common-tags');
|
const { stripIndents } = require('common-tags');
|
||||||
const { URL } = require('url');
|
const { URL } = require('url');
|
||||||
|
|||||||
Reference in New Issue
Block a user