26 lines
454 B
Swift
26 lines
454 B
Swift
//
|
|
// Features.swift
|
|
// Delta
|
|
//
|
|
// Created by Riley Testut on 4/21/23.
|
|
// Copyright © 2023 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import DeltaFeatures
|
|
|
|
extension Settings
|
|
{
|
|
struct Features: FeatureContainer
|
|
{
|
|
static let shared = Features()
|
|
|
|
@Feature(name: "DS AirPlay", options: DSAirPlayOptions())
|
|
var dsAirPlay
|
|
|
|
private init()
|
|
{
|
|
self.prepareFeatures()
|
|
}
|
|
}
|
|
}
|