mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-03 18:24:53 +00:00
11 lines
183 B
Lua
11 lines
183 B
Lua
-- Validation module for SMTP config
|
|
local smtp = require("smtp")
|
|
|
|
---@class ValidateModule
|
|
local M = {}
|
|
|
|
-- Export validation function
|
|
M.validate = smtp.validate
|
|
|
|
return M
|