mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2024-12-26 08:45:25 +01:00
14 lines
278 B
Swift
14 lines
278 B
Swift
// Copyright © 2023 Mastodon gGmbH. All rights reserved.
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct WidgetExtensionBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
FollowersCountWidget()
|
|
MultiFollowersCountWidget()
|
|
LatestFollowersWidget()
|
|
}
|
|
}
|