view src/luan/modules/host/delete.luan @ 1530:447b7ef9197f

minor fix
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 28 Jul 2020 22:12:36 -0600
parents 1a68fc55a80c
children
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.luan domain password\n"
	return
end

Hosting.delete(...)

print("deleted "..(...))