| 3 | export const BACKEND_EXE_NAME = 'AICultivationSimulator_Backend.exe' |
| 4 | |
| 5 | export interface BackendPathOptions { |
| 6 | resourcesPath: string |
| 7 | backendDir?: string |
| 8 | backendExeName?: string |
| 9 | } |
| 10 | |
| 11 | export function resolvePackagedBackendExe(options: BackendPathOptions): string { |
| 12 | const backendDir = options.backendDir ?? 'backend' |
nothing calls this directly
no outgoing calls
no test coverage detected