mirror of
https://github.com/mas-cli/mas
synced 2024-12-26 03:43:09 +00:00
12 lines
295 B
Swift
12 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
|
|
}
|