view src/init.luan @ 108:2c85ae7b8a35 default tip

logging
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 03 Sep 2025 12:40:20 -0600
parents effa1e0af52a
children
line wrap: on
line source

local Hosted = require "luan:host/Hosted.luan"
local Logging = require "luan:logging/Logging.luan"
local logger = Logging.logger "init"

Hosted.set_https and Hosted.set_https(true)

logger.error "init"

return true