mirror of
https://github.com/mas-cli/mas
synced 2024-12-26 11:53:08 +00:00
13 lines
295 B
Swift
13 lines
295 B
Swift
|
//
|
||
|
// Account.swift
|
||
|
// mas-cli
|
||
|
//
|
||
|
// Created by Andrew Naylor on 22/08/2015.
|
||
|
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
|
||
|
//
|
||
|
|
||
|
func primaryAccount() -> ISStoreAccount {
|
||
|
let accountController = CKAccountStore.sharedAccountStore()
|
||
|
return accountController.primaryAccount
|
||
|
}
|