2
2
mirror of https://github.com/mastodon/mastodon-ios synced 2025-04-11 22:58:02 +02:00
mastodon-ios/Mastodon/Protocol/DisposeBagCollectable.swift
2021-02-07 16:19:33 +08:00

14 lines
221 B
Swift

//
// DisposeBagCollectable.swift
// Mastodon
//
// Created by sxiaojian on 2021/2/5.
//
import Foundation
import Combine
protocol DisposeBagCollectable: class {
var disposeBag: Set<AnyCancellable> { get set }
}