diff http/src/luan/modules/http/Shell_mod.luan @ 693:ca169567ce07

module URIs must now include ".luan"
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 19 Apr 2016 15:54:11 -0600
parents 24b05963ba62
children b620b8e1010f
line wrap: on
line diff
--- a/http/src/luan/modules/http/Shell_mod.luan	Mon Apr 18 20:40:21 2016 -0600
+++ b/http/src/luan/modules/http/Shell_mod.luan	Tue Apr 19 15:54:11 2016 -0600
@@ -1,11 +1,11 @@
-local Luan = require "luan:Luan"
+local Luan = require "luan:Luan.luan"
 local error = Luan.error
 local ipairs = Luan.ipairs or error()
 local load = Luan.load or error()
 local try = Luan.try or error()
-local Io = require "luan:Io"
+local Io = require "luan:Io.luan"
 local print = Io.print or error()
-local Http = require "luan:http/Http"
+local Http = require "luan:http/Http.luan"
 
 
 local M = {}