fix: For posterity, am committing this

This commit is contained in:
Wanjohi
2026-07-24 14:20:06 +03:00
parent b592172425
commit 042c2bed3c
7 changed files with 15 additions and 15 deletions

View File

@@ -9,13 +9,12 @@ const myTestSession = session({
framerate: 60,
audioBitrate: 128,
gpuCardPath: "/dev/dri/renderD128",
run: async (payload) => {
console.log("Running test session with payload:", payload);
return { message: "Test session completed" };
},
});
myTestSession.start().then((result) => {
myTestSession.start({}).then((result) => {
console.log("Session result:", result);
});