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>
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
--!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
|
||||
Reference in New Issue
Block a user