mirror of
https://github.com/ThunixdotNet/thunix_api.git
synced 2026-06-14 22:30:18 +00:00
13 lines
314 B
Python
13 lines
314 B
Python
from flask_restful import Resource
|
|
|
|
class Home(Resource):
|
|
def get(self):
|
|
payload = [
|
|
{
|
|
# pylint: disable=C0301
|
|
"Description": "The Thunix API. Please see https://wiki.thunix.net/wiki/api for more information."
|
|
}
|
|
]
|
|
|
|
return payload
|