diff core/src/luan/modules/host/Hosting.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 c5baaa525897
children 28fedb32ab19
line wrap: on
line diff
--- a/core/src/luan/modules/host/Hosting.luan	Mon Apr 18 20:40:21 2016 -0600
+++ b/core/src/luan/modules/host/Hosting.luan	Tue Apr 19 15:54:11 2016 -0600
@@ -1,13 +1,13 @@
 -- Hosting
 
-local Luan = require "luan:Luan"
+local Luan = require "luan:Luan.luan"
 local error = Luan.error
 local ipairs = Luan.ipairs or error()
 local pairs = Luan.pairs or error()
-local Io = require "luan:Io"
+local Io = require "luan:Io.luan"
 local print = Io.print or error()
-local Rpc = require "luan:Rpc"
-local String = require "luan:String"
+local Rpc = require "luan:Rpc.luan"
+local String = require "luan:String.luan"
 local matches = String.matches or error()