mirror of
https://github.com/acedanger/dotfiles.git
synced 2025-12-05 22:30:13 -08:00
16 lines
244 B
Lua
16 lines
244 B
Lua
---@class Utils
|
|
---@field class Utils.Class
|
|
---@field fn Utils.Fn
|
|
---@field gpu GpuAdapters
|
|
local M = {}
|
|
|
|
local mod = ...
|
|
setmetatable(M, {
|
|
__index = function(t, k)
|
|
t[k] = require(mod .. "." .. k)
|
|
return t[k]
|
|
end,
|
|
})
|
|
|
|
return M
|