Skip to content

Commit

Permalink
Atualiza exemplos depois de mudar estrutura do módulo ncluahttp para …
Browse files Browse the repository at this point in the history
…funcionar nas versões mais novas de Lua
  • Loading branch information
manoelcampos committed Dec 3, 2021
1 parent 64aaeb8 commit 6925e54
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ A seguir é demonstrado um exemplo simples de uso do módulo, que envia uma requ

```lua
package.path = package.path .. ';./?.lua'
require "ncluahttp"
local ncluahttp = require "ncluahttp"

function callback(header, body)
if body then
Expand Down
2 changes: 1 addition & 1 deletion exemplos/exemplo1.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---Exemplo 1 de uso do NCLua HTTP
package.path = package.path .. ';../?.lua'

require "ncluahttp"
local ncluahttp = require "ncluahttp"

---Função chamada quando a resposta da requisição é obtida
--@param header String contndo as informações do header da resposta.
Expand Down
2 changes: 1 addition & 1 deletion exemplos/exemplo2.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---Exemplo 2 de uso do NCLua HTTP
package.path = package.path .. ';../?.lua'

require "ncluahttp"
local ncluahttp = require "ncluahttp"

---Função chamada quando a resposta da requisição é obtida
--@param header String contndo as informações do header da resposta.
Expand Down
2 changes: 1 addition & 1 deletion exemplos/exemplo_enquete.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---Exemplo de enquete usando NCLua HTTP
package.path = package.path .. ';../?.lua'

require "ncluahttp"
local ncluahttp = require "ncluahttp"

---Mostra mensagem indicando que a requisição está sendo enviada
function showSending()
Expand Down

0 comments on commit 6925e54

Please sign in to comment.