rwbutler/IPAUploader

View on GitHub
Services/Messaging/Model/MessagingOptions.swift

Summary

Maintainability
A
0 mins
Test Coverage
//
//  MessagingOptions.swift
//  ipa-uploader
//
//  Created by Ross Butler on 11/20/18.
//

import Foundation

struct MessagingOptions: OptionSet {
    let rawValue: Int
    
    static let console  = MessagingOptions(rawValue: 1 << 0)
    static let slack    = MessagingOptions(rawValue: 1 << 1)
    
    static let all: MessagingOptions = [.console, .slack]
}