view core/src/luan/modules/host/delete.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 252041bc41b5
children 28fedb32ab19
line wrap: on
line source

local Io = require "luan:Io.luan"
local print = Io.print
local Hosting = require "luan:host/Hosting.luan"

if #{...} ~= 2 then
	Io.stderr.write "usage: luan luan:host/delete domain password\n"
	return
end

Hosting.delete(...)

print("done with "..(...))