GBA-8-19/Delta/Settings/Features/Features.swift
2024-06-14 17:15:51 +08:00

26 lines
419 B
Swift

//
// Features.swift
// Hthik
//
// Created by Hthik on 4/21/23.
// Copyright © 2024 Hthik
//
import DeltaFeatures
extension Settings
{
struct Features: FeatureContainer
{
static let shared = Features()
@Feature(name: "DS AirPlay", options: DSAirPlayOptions())
var dsAirPlay
private init()
{
self.prepareFeatures()
}
}
}