-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapiConf.py
52 lines (46 loc) · 1.67 KB
/
apiConf.py
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
49
50
51
52
# Nexa API configuration
NX_Conf = {
# Metadata for api
"title": "Nexa API 🌊",
"description": """
# About ❓
Simple, Free and easy to use Public api.
- [Homepage](/)
- [API playground](/playground)
- [Documentation](/docs)
- [API Wrappers](https://github.com/Itz-fork/Nexa-API/tree/main/wrappers)
### Made with ♥️
[](https://www.python.org/)
[](https://github.com/tiangolo/fastapi)
### Social links 🔗
[](https://github.com/Itz-fork/Nexa-API)
[](https://t.me/NexaBotsUpdates)
""",
"version": "0.3.4",
# Home route
"home_redirect": False,
"redirect_to": "/docs",
# Metadata for tags
"tags": [
{
"name": "Search",
"description": "Search for stuff in ~various~ sites"
},
{
"name": "File server",
"description": "Save your files on the server and download them whenever you want!"
},
{
"name": "Tools",
"description": "Tools for simple things"
},
{
"name": "Language",
"description": "Language related stuff"
},
{
"name": "Fun",
"description": "Endpoints made to have some fun"
}
]
}