mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
13 lines
319 B
Swift
13 lines
319 B
Swift
//
|
|
// SoftwareMap.swift
|
|
// MasKit
|
|
//
|
|
// Created by Ben Chatelain on 3/1/20.
|
|
// Copyright © 2020 mas-cli. All rights reserved.
|
|
//
|
|
|
|
/// Somewhat analygous to CKSoftwareMap
|
|
protocol SoftwareMap {
|
|
func allSoftwareProducts() -> [SoftwareProduct]
|
|
func product(for bundleIdentifier: String) -> SoftwareProduct?
|
|
}
|