-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.py
More file actions
48 lines (34 loc) · 1.46 KB
/
Copy pathlaunch.py
File metadata and controls
48 lines (34 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""
[TeamDev](https://t.me/team_x_og)
Project Id -> 39.
Project Name -> TeamDev X Music
Project Age -> 15D+ (Updated On 05/05/2026)
Project Idea By -> @MR_ARMAN_08
Project Dev -> @MR_ARMAN_08
Powered By -> @Team_X_Og ( On Telegram )
Updates -> @TeamDevXBots ( On telegram )
Setup Guides -> Read > README.md
This Script Part Off https://t.me/Team_X_Og's Team.
Copyright ©️ 2026 TeamDev | @Team_X_Og
• Some Quick Help
- Read Full README.md For Understanding The Content.
- If You Need Any Help Contact Us In @Team_X_Og's Group
Compatible In BotApi 9.5 Fully
Build For BotApi 9.5
We'll Keep Update This Repo If We Got 30+ Stars In One Month Of Release.
"""
# Copyright (C) 2025 by @MR_ARMAN_08 @ Github, < https://github.com/justfortestingnothibghere >
# All rights reserved. © TeamDevXMusic
"""
TeamDevXMusic is a Telegram Music Bot by @MR_ARMAN_08.
Copyright (c) 2026 ~ Present Team TeamDevXMusic <https://github.com/justfortestingnothibghere>
This program is "Ristiricted" software: Don't Modify, Redistribute Or Sell This Project Proving As Your Project
TeamDev Will Take Action If They Find Any unauthorised usages.
"""
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello_world():
return "TeamDev Music Bye @Team_X_Og"
if __name__ == "__main__":
app.run()