Whisper model weights excluded from git — auto-downloaded at first Xcode build via Scripts/download_whisper_model.sh (~600 MB, one-time).
19 lines
322 B
Swift
19 lines
322 B
Swift
//
|
|
// LockInBroWidgetBundle.swift
|
|
// LockInBroWidget
|
|
//
|
|
// Created by Aditya Pulipaka on 3/28/26.
|
|
//
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct LockInBroWidgetBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
LockInBroWidget()
|
|
LockInBroWidgetControl()
|
|
LockInBroWidgetLiveActivity()
|
|
}
|
|
}
|