diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-08-22 19:38:36 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-08-22 19:38:36 +0200 |
commit | 772c9629ebbffc2751c9048f0708bd009a8bd3ca (patch) | |
tree | 04fc546135c3ff2a2ba27fd687079f9ae6958e5c /clientmods/test/init.lua | |
parent | 9b1030cac4409b262dca73d2f0741fe78d4998ee (diff) | |
download | dragonfireclient-772c9629ebbffc2751c9048f0708bd009a8bd3ca.tar.xz |
Unrestricted HTTP API for Client, Server and Main Menu
Diffstat (limited to 'clientmods/test/init.lua')
-rw-r--r-- | clientmods/test/init.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clientmods/test/init.lua b/clientmods/test/init.lua new file mode 100644 index 000000000..3020f9a62 --- /dev/null +++ b/clientmods/test/init.lua @@ -0,0 +1,3 @@ +local HTTPApiTable = minetest.get_http_api() + +print(dump(HTTPApiTable.fetch_sync({url = "https://example.org"}))) |