mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 16:05:18 +00:00
17 lines
259 B
Swift
17 lines
259 B
Swift
//
|
|
// HomePlayerWidgetBundle.swift
|
|
// HomePlayerWidget
|
|
//
|
|
// Created by Kingkor Roy Tirtho on 15/12/24.
|
|
//
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct HomePlayerWidgetBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
HomePlayerWidget()
|
|
}
|
|
}
|