copied profile

This commit is contained in:
Peter Wood
2025-04-08 15:31:34 -04:00
parent 59ea35edc7
commit 6c72ecbd48
106 changed files with 9515 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
---@class Utils.Class
---@field config Utils.Class.Config
---@field icon Utils.Class.Icons
---@field layout Utils.Class.Layout
---@field logger Utils.Class.Logger
---@field picker Utils.Class.Picker
local M = {}
local mod = ...
setmetatable(M, {
__index = function(t, k)
t[k] = require(mod .. "." .. k)
return t[k]
end,
})
return M