view core/src/luan/modules/host/delete.luan @ 536:3058870cbe83

add Luan.number_type and Lucene.query.range
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 01 Jun 2015 00:27:45 -0600
parents 6fd016d35ec1
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"