Add Lua pipeline support

This commit is contained in:
2026-06-11 15:07:02 +08:00
parent 1fec5f8941
commit edec8113fb
9 changed files with 769 additions and 38 deletions

View File

@@ -0,0 +1,12 @@
return {
decode = function(frame)
if #frame == 0 then
return nil
end
return {
kind = "text",
data = frame,
}
end,
}