forked from zelo72/mastodon-ios
33 lines
557 B
Swift
33 lines
557 B
Swift
|
//
|
||
|
// APIService.swift
|
||
|
// ShareActionExtension
|
||
|
//
|
||
|
// Created by MainasuK Cirno on 2021-7-20.
|
||
|
//
|
||
|
|
||
|
import os.log
|
||
|
import Foundation
|
||
|
import Combine
|
||
|
import CoreData
|
||
|
import CoreDataStack
|
||
|
import MastodonSDK
|
||
|
|
||
|
// Replica APIService for share extension
|
||
|
final class APIService {
|
||
|
|
||
|
var disposeBag = Set<AnyCancellable>()
|
||
|
|
||
|
static let shared = APIService()
|
||
|
|
||
|
// internal
|
||
|
let session: URLSession
|
||
|
|
||
|
// output
|
||
|
let error = PassthroughSubject<APIError, Never>()
|
||
|
|
||
|
private init() {
|
||
|
self.session = URLSession(configuration: .default)
|
||
|
}
|
||
|
|
||
|
}
|