39 lines
879 B
JavaScript
39 lines
879 B
JavaScript
const { models } = require(path.resolve(process.env.ROOT_PATH, './db/db.js'));
|
|
|
|
const domains = [
|
|
'000000014.xyz',
|
|
'000000016.xyz',
|
|
'000000019.xyz',
|
|
'000000020.xyz',
|
|
'000000021.xyz',
|
|
'000000023.xyz',
|
|
'000000024.xyz',
|
|
'000000025.xyz',
|
|
'000000026.xyz',
|
|
'000000027.xyz',
|
|
'000000029.xyz',
|
|
'000000030.xyz',
|
|
'000000031.xyz',
|
|
'000000032.xyz',
|
|
'000000033.xyz',
|
|
'000000034.xyz',
|
|
'000000035.xyz',
|
|
'000000036.xyz',
|
|
'20is20butimnotgay.com',
|
|
'20is20butimnotgay.fyi',
|
|
'20is20butimnotgay.top',
|
|
'2weekmail.fyi',
|
|
'bigwhitevanfbi.com',
|
|
'bigwhitevanfbi.fyi',
|
|
'bigwhitevanfbi.top',
|
|
'icantreadpls.fyi',
|
|
'icantreadpls.top',
|
|
'idonthaveabig.wang',
|
|
'idonthaveabigwang.com',
|
|
];
|
|
|
|
(async () => {
|
|
for (const domain of domains) {
|
|
await models.domain.create({ domain });
|
|
}
|
|
})(); |