um add modernc/sqlite

This commit is contained in:
2025-07-29 21:30:17 +03:00
parent 74f166e6cf
commit c61bc841e6
1417 changed files with 6322360 additions and 1399 deletions

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-fields, missing-return
---@alias AnyTable table<string, any>
---@type AnyTable
@@ -8,4 +9,16 @@ In = {
---@type AnyTable
Out = {
Result = {},
}
}
---@class Log
---@field Info fun(msg: string)
---@field Debug fun(msg: string)
---@field Error fun(msg: string)
---@field Warn fun(msg: string)
---@field Event fun(msg: string)
---@field EventError fun(msg: string)
---@field EventWarn fun(msg: string)
---@type Log
Log = {}