view core/src/luan/modules/host/delete.luan @ 348:6fd016d35ec1 0.2

improve Hosting and fix mmake
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 12 Apr 2015 08:35:23 -0600
parents
children 252041bc41b5
line wrap: on
line source

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

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

Hosting.delete(...)

print "done"