Files
claude-code/src/server/lockfile.ts
2026-05-01 21:39:30 +08:00

16 lines
428 B
TypeScript

// Auto-generated stub — replace with real implementation
export interface ServerLockInfo {
pid: number
port: number
host: string
httpUrl: string
startedAt: number
}
export const writeServerLock: (info: ServerLockInfo) => Promise<void> =
async () => {}
export const removeServerLock: () => Promise<void> = async () => {}
export const probeRunningServer: () => Promise<ServerLockInfo | null> =
async () => null