secretive/Sources/Secretive/Controllers/URLs.swift
Max Goedjen c42bfe38a3
WIP
2025-09-02 22:56:31 -07:00

13 lines
320 B
Swift

import Foundation
extension URL {
static var agentHomeURL: URL {
URL(fileURLWithPath: URL.homeDirectory.path().replacingOccurrences(of: Bundle.hostBundleID, with: Bundle.agentBundleID))
}
static var socketPath: String {
URL.agentHomeURL.appendingPathComponent("socket.ssh").path()
}
}