view core/src/luan/modules/host/delete.luan @ 723:eaf30d5aaf6a

handle url headers
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 03 Jun 2016 18:43:27 -0600
parents 28fedb32ab19
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 "..(...))