diff options
| author | amelia squires <[email protected]> | 2025-03-31 13:21:27 -0500 |
|---|---|---|
| committer | amelia squires <[email protected]> | 2025-03-31 13:21:27 -0500 |
| commit | 876e28e4dc4a6f2c19dc2523f5db78fa6e4a16a9 (patch) | |
| tree | d1adb6a4e3cdf9ae3c11920ac98d4ed54bae8cca /library/lullaby.lua | |
| parent | 19cb409b0aee4b8605977644d8941460c02cdf80 (diff) | |
type definitions
Diffstat (limited to 'library/lullaby.lua')
| -rw-r--r-- | library/lullaby.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/library/lullaby.lua b/library/lullaby.lua new file mode 100644 index 0000000..675b14c --- /dev/null +++ b/library/lullaby.lua @@ -0,0 +1,18 @@ +---@meta + +---@class lullaby +local lullaby = {} + +function lullaby.version() end + +lullaby.crypto = require("library.lullaby.crypto") +lullaby.error = require("library.lullaby.error") +lullaby.io = require("library.lullaby.io") +lullaby.math = require("library.lullaby.math") +lullaby.net = require("library.lullaby.net") +lullaby.sort = require("library.lullaby.sort") +lullaby.table = require("library.lullaby.table") +lullaby.test = require("library.lullaby.test") +lullaby.thread = require("library.lullaby.thread") + +return lullaby |
