mastodon-ios/WidgetExtension/WidgetExtensionBundle.swift

15 lines
302 B
Swift
Raw Normal View History

// Copyright © 2023 Mastodon gGmbH. All rights reserved.
import WidgetKit
import SwiftUI
@main
struct WidgetExtensionBundle: WidgetBundle {
var body: some Widget {
FollowersCountWidget()
MultiFollowersCountWidget()
2023-02-06 11:39:40 +01:00
LatestFollowersWidget()
2023-03-22 22:05:15 +01:00
HashtagWidget()
}
}