mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-07 13:43:06 -04:00
clean up
This commit is contained in:
parent
c25e876962
commit
128369350f
24 changed files with 17 additions and 45 deletions
7
index.js
7
index.js
|
@ -1,6 +1,5 @@
|
|||
const { ClusterManager } = require('detritus-client');
|
||||
const express = require('express');
|
||||
const app = express();
|
||||
|
||||
const time = Date.now();
|
||||
|
||||
const token = process.env.token;
|
||||
|
@ -18,6 +17,10 @@ const manager = new ClusterManager(client, token, {
|
|||
console.log(`v2 | ready. took ${(Date.now() - time) / 1000}.`)
|
||||
})();
|
||||
|
||||
// TODO: if i decide that this is necessary for something else, move it to a dedicated directory
|
||||
const express = require('express');
|
||||
const app = express();
|
||||
|
||||
app.get("*", function (request, response) {
|
||||
response.send(`🧪 v2 @ ${Date.now()}`);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue