refactor: vendor content as regular files (remove git submodules) so CI builds don't need GitHub auth

This commit is contained in:
asepharyana
2026-07-02 02:38:04 +07:00
parent 7b106fe562
commit 134674d7dd
452 changed files with 75011 additions and 4 deletions
+17
View File
@@ -0,0 +1,17 @@
const { Client } = require('../src/index');
const client = new Client();
client.on('ready', async () => {
client.user.setSamsungActivity('com.YostarJP.BlueArchive', 'START');
setTimeout(() => {
client.user.setSamsungActivity('com.miHoYo.bh3oversea', 'UPDATE');
}, 30_000);
setTimeout(() => {
client.user.setSamsungActivity('com.miHoYo.GenshinImpact', 'STOP');
}, 60_000);
});
client.login('token');