view core/src/luan/modules/host/delete.luan @ 716:28fedb32ab19 0.19

hosting changes
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 23 May 2016 19:16:21 -0600
parents ca169567ce07
children c92b3fabf92a
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("deleted "..(...))