mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 11:33:13 +00:00
2c2eaa2821
🔥 Remove empty mas bridging header
30 lines
750 B
Swift
30 lines
750 B
Swift
//
|
|
// Account.swift
|
|
// mas-cli
|
|
//
|
|
// Created by Andrew Naylor on 21/08/2015.
|
|
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
|
|
//
|
|
|
|
import Commandant
|
|
import Result
|
|
import StoreFoundation
|
|
|
|
public struct AccountCommand: CommandProtocol {
|
|
public typealias Options = NoOptions<MASError>
|
|
public let verb = "account"
|
|
public let function = "Prints the primary account Apple ID"
|
|
|
|
public init() {}
|
|
|
|
public func run(_ options: Options) -> Result<(), MASError> {
|
|
if let account = ISStoreAccount.primaryAccount {
|
|
print(String(describing: account.identifier))
|
|
}
|
|
else {
|
|
print("Not signed in")
|
|
return .failure(.notSignedIn)
|
|
}
|
|
return .success(())
|
|
}
|
|
}
|