mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-24 08:36:07 +02:00
6 lines
113 B
Swift
6 lines
113 B
Swift
import Foundation
|
|
|
|
public protocol EncryptedMediaResource {
|
|
func decrypt(data: Data, params: Any) -> Data?
|
|
}
|