mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2026-02-08 18:40:31 +01:00
10 lines
114 B
Lua
10 lines
114 B
Lua
|
|
local testlib = {}
|
||
|
|
|
||
|
|
function testlib.test_add_ten (x)
|
||
|
|
return x + 10
|
||
|
|
end
|
||
|
|
|
||
|
|
Log.info("in testlib")
|
||
|
|
|
||
|
|
return testlib
|