mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 19:40:19 +00:00
19 lines
446 B
Swift
19 lines
446 B
Swift
import Foundation
|
|
|
|
final class MediaCleanupTable: Table {
|
|
static func tableSpec(_ id: Int32) -> ValueBoxTable {
|
|
return ValueBoxTable(id: id, keyType: .binary)
|
|
}
|
|
|
|
override init(valueBox: ValueBox, table: ValueBoxTable) {
|
|
super.init(valueBox: valueBox, table: table)
|
|
}
|
|
|
|
func add(_ media: Media, sharedEncoder: Encoder = Encoder()) {
|
|
}
|
|
|
|
func debugList() -> [Media] {
|
|
return []
|
|
}
|
|
}
|