Files
Paul Lipscomb 7ecc718f5d Reorganize top-level directories with clearer naming convention
app -> app-desktop-macos, presets -> app-presets, server -> remote-server,
daw-config-reaper -> osc-config-daw, plugin-reaper-realearn -> plugin-reaper-relearn.
Updated run.py and presets.py path references accordingly.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-15 17:51:05 -04:00

18 lines
681 B
Lua

--!strict
--- Contains types and function stubs for building presets. The actual function implementations are provided
--- by the runtime.
local module = {}
--- Returns the content of the given file as string.
---
--- The given path is always relative to the module root.
---
--- This function is very useful when you build a preset in which the compartment contains commona Lua code.
--- Instead of writing the common Lua code as a Lua string, you can include it from a dedicated file. That way,
--- you can benefit from syntax highlighting and typechecking when building the common Lua code.
function module.include_str(path: string): string?
return nil
end
return module