sn0int registry

manamonio/export

-- Description: Export data
-- Version: 0.1.1
-- Source: urls
-- License: GPL-3.0

function run()
    -- TODO your code here
    info('teste')
    file = io.open('/home/user/urls/output.txt','w')
    io.output(file)
    io.write('teste')
    io.close(file)
end