6 lines
160 B
Swift
6 lines
160 B
Swift
// Copyright 2024-present 650 Industries. All rights reserved.
|
|
|
|
internal protocol ImageTransformer {
|
|
func transform(image: UIImage) async throws -> UIImage
|
|
}
|