mas/MasKit/Controllers/SoftwareMap.swift

14 lines
319 B
Swift
Raw Normal View History

2020-03-29 03:15:07 +00:00
//
// 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?
}