mirror of
https://github.com/mastodon/mastodon-ios
synced 2025-04-11 22:58:02 +02:00
16 lines
221 B
Swift
16 lines
221 B
Swift
//
|
|
// ImageTask.swift
|
|
// Mastodon
|
|
//
|
|
// Created by Cirno MainasuK on 2021-6-24.
|
|
//
|
|
|
|
import Foundation
|
|
import Nuke
|
|
|
|
extension ImageTask {
|
|
func store(in set: inout Set<ImageTask?>) {
|
|
set.insert(self)
|
|
}
|
|
}
|