This is a non-behavioral change in preparation for the actual switchover from Strings to Ids. The purpose of this kit is to reduce the size of the switchover commit which is going to be very large.
16 lines
261 B
Swift
16 lines
261 B
Swift
//
|
|
// RepostsModel.swift
|
|
// damus
|
|
//
|
|
// Created by Terry Yiu on 1/22/23.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
final class RepostsModel: EventsModel {
|
|
|
|
init(state: DamusState, target: NoteId) {
|
|
super.init(state: state, target: target, kind: .boost)
|
|
}
|
|
}
|