mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
22 lines
479 B
Swift
22 lines
479 B
Swift
//
|
|
// AltXPCProtocol.swift
|
|
// SideStore
|
|
//
|
|
// Created by Joseph Mattiello on 02/28/23.
|
|
// Copyright © 2023 Joseph Mattiello. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public typealias AltXPCProtocol = SideXPCProtocol
|
|
|
|
@objc
|
|
public protocol SideXPCProtocol {
|
|
func ping(completionHandler: @escaping () -> Void)
|
|
func requestAnisetteData(completionHandler: @escaping (ALTAnisetteData?, Error?) -> Void)
|
|
}
|
|
|
|
@objc public class ALTAnisetteData: NSObject {
|
|
// implementation
|
|
}
|