mas/mas-cli/Commands/SignOut.swift
2016-09-24 15:53:50 +01:00

18 lines
445 B
Swift

//
// SignOut.swift
// mas-cli
//
// Created by Andrew Naylor on 14/02/2016.
// Copyright © 2016 Andrew Naylor. All rights reserved.
//
struct SignOutCommand: CommandProtocol {
typealias Options = NoOptions<MASError>
let verb = "signout"
let function = "Sign out of the Mac App Store"
func run(_ options: Options) -> Result<(), MASError> {
CKAccountStore.shared().signOut()
return .success(())
}
}