filestack/filestack-swift

View on GitHub
Sources/FilestackSDK/Public/Transforms/SecureForWorkTransform.swift

Summary

Maintainability
A
0 mins
Test Coverage
//
//  SecureForWorkTransform.swift
//  FilestackSDK
//
//  Created by Mihály Papp on 20/06/2018.
//  Copyright © 2018 Filestack. All rights reserved.
//

import Foundation

/// Returns whether the image if safe to display.
public class SecureForWorkTransform: Transform {
    // MARK: - Lifecycle

    /// Initializes a `SecureForWorkTransform` object.
    public init() {
        super.init(name: "sfw")
    }
}