mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-09 00:23:20 +01:00
13 lines
275 B
Swift
13 lines
275 B
Swift
import Foundation
|
|
|
|
extension UserDefaults {
|
|
@UserDefault(
|
|
key: "experimentsOptions",
|
|
defaultValue: ExperimentsOptions(
|
|
showInstagramDestination: false,
|
|
liveContainerSharing: true
|
|
)
|
|
)
|
|
static var experimentsOptions
|
|
}
|