mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
9 lines
440 B
Text
9 lines
440 B
Text
local util = require("./util")
|
|
local pass = util.pass
|
|
|
|
-- stylua: ignore start
|
|
pass("GET", "https://httpbingo.org/get", "Request method - GET")
|
|
pass("POST", "https://httpbingo.org/post", "Request method - POST")
|
|
pass("PATCH", "https://httpbingo.org/patch", "Request method - PATCH")
|
|
pass("PUT", "https://httpbingo.org/put", "Request method - PUT")
|
|
pass("DELETE", "https://httpbingo.org/delete", "Request method - DELETE")
|