6 lines
163 B
TypeScript
6 lines
163 B
TypeScript
import type { LogEntry } from "@plugos/plugos/sandbox";
|
|
|
|
export async function getServerLogs(): Promise<LogEntry[]> {
|
|
return syscall("sandbox.getServerLogs");
|
|
}
|