mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-10 07:13:28 +01:00
16 lines
300 B
Swift
16 lines
300 B
Swift
|
|
//
|
||
|
|
// URL+Tools.swift
|
||
|
|
// AltJIT
|
||
|
|
//
|
||
|
|
// Created by Riley Testut on 9/3/23.
|
||
|
|
// Copyright © 2023 Riley Testut. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
import Foundation
|
||
|
|
|
||
|
|
extension URL
|
||
|
|
{
|
||
|
|
static let python3 = URL(fileURLWithPath: "/usr/bin/python3")
|
||
|
|
static let lldb = URL(fileURLWithPath: "/usr/bin/lldb")
|
||
|
|
}
|