mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 22:34:56 +00:00
16 lines
342 B
Lua
16 lines
342 B
Lua
-- Codegen blueprint module
|
|
|
|
---@class BlueprintModule
|
|
---@field component function
|
|
---@field service function
|
|
---@field model function
|
|
|
|
---@type BlueprintModule
|
|
local blueprint = {
|
|
component = require("blueprint.component"),
|
|
service = require("blueprint.service"),
|
|
model = require("blueprint.model")
|
|
}
|
|
|
|
return blueprint
|