Files
iTorrent/ProgressWidget/ProgressWidgetBundle.swift
T
2024-04-09 22:35:51 +02:00

20 lines
341 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// ProgressWidgetBundle.swift
// ProgressWidget
//
// Created by Даниил Виноградов on 06.04.2024.
//
import SwiftUI
import WidgetKit
@main
struct ProgressWidgetBundle: WidgetBundle {
var body: some Widget {
// ProgressWidget()
#if canImport(ActivityKit)
ProgressWidgetLiveActivity()
#endif
}
}