working bot

This commit is contained in:
3dyuval
2023-04-21 20:57:53 +03:00
parent 53d07a2db5
commit 1ec9a6c90d
9 changed files with 7260 additions and 1 deletions

14
dist/index.js vendored Normal file
View File

@@ -0,0 +1,14 @@
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const express_1 = __importDefault(require("express"));
const PORT = 3000;
const app = (0, express_1.default)();
app.get('/', (req, res) => {
res.send('Hello!');
});
app.listen(PORT, () => {
console.log(`server is listening on port ${PORT}`);
});