Initial commit

This commit is contained in:
2024-10-02 14:54:32 +02:00
commit 14af275c5c
27 changed files with 1871 additions and 0 deletions

9
lua/cave/python/init.lua Normal file
View File

@@ -0,0 +1,9 @@
---@class cave.Python
local Python = {
Interpreter = require "cave.python.interpreter",
Module = require "cave.python.module",
Runnable = require "cave.python.runnable",
Script = require "cave.python.script",
}
return Python