17 lines
365 B
Swift
17 lines
365 B
Swift
//
|
|
// MastodonActivity.swift
|
|
// Tusker
|
|
//
|
|
// Created by Shadowfacts on 1/5/20.
|
|
// Copyright © 2020 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class MastodonActivity: UIActivity {
|
|
var mastodonController: MastodonController {
|
|
let scene = UIApplication.shared.activeOrBackgroundScene!
|
|
return scene.session.mastodonController!
|
|
}
|
|
}
|