Files
LockInBroMobile/LockInBroWidget/AppIntent.swift
pulipakaa24 cc353e37ae Initial commit
Whisper model weights excluded from git — auto-downloaded at first Xcode
build via Scripts/download_whisper_model.sh (~600 MB, one-time).
2026-04-01 15:52:27 -05:00

19 lines
465 B
Swift

//
// AppIntent.swift
// LockInBroWidget
//
// Created by Aditya Pulipaka on 3/28/26.
//
import WidgetKit
import AppIntents
struct ConfigurationAppIntent: WidgetConfigurationIntent {
static var title: LocalizedStringResource { "Configuration" }
static var description: IntentDescription { "This is an example widget." }
// An example configurable parameter.
@Parameter(title: "Favorite Emoji", default: "😃")
var favoriteEmoji: String
}