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.
17 lines
270 B
Swift
17 lines
270 B
Swift
//
|
|
// LikesModel.swift
|
|
// damus
|
|
//
|
|
// Created by William Casarin on 2023-01-11.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
|
|
final class ReactionsModel: EventsModel {
|
|
|
|
init(state: DamusState, target: NoteId) {
|
|
super.init(state: state, target: target, kind: .like)
|
|
}
|
|
}
|