Raybilhelp commited on
Commit
274a9ef
·
verified ·
1 Parent(s): 6da2b5c

Create index.js

Browse files
Files changed (1) hide show
  1. index.js +11 -0
index.js ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ const express = require('express');
2
+ const app = express();
3
+ const port = 7860; // এই পোর্টটিই ব্যবহার করবেন
4
+
5
+ app.get('/', (req, res) => {
6
+ res.send('Server is live on Hugging Face!');
7
+ });
8
+
9
+ app.listen(port, '0.0.0.0', () => {
10
+ console.log('Bot is running...');
11
+ });