mirror of
https://github.com/mas-cli/mas
synced 2024-11-26 21:40:19 +00:00
12 lines
265 B
Swift
12 lines
265 B
Swift
//
|
|
// StoreSearch.swift
|
|
// MasKit
|
|
//
|
|
// Created by Ben Chatelain on 12/29/18.
|
|
// Copyright © 2018 mas-cli. All rights reserved.
|
|
//
|
|
|
|
/// Protocol for searching the MAS catalog.
|
|
public protocol StoreSearch {
|
|
func lookupURLString(forApp: String) -> String?
|
|
}
|