17 lines
226 B
Swift
17 lines
226 B
Swift
//
|
|
// PDFCreator.swift
|
|
// JustScanIt
|
|
//
|
|
// Created by Pradyun Setti on 10/07/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public final class PDFCreator {
|
|
private let dpi: CGFloat = 72
|
|
|
|
public func generate() {
|
|
|
|
}
|
|
}
|