22 lines
429 B
Swift
22 lines
429 B
Swift
//
|
|
// Status+Equatable.swift
|
|
// Tusker
|
|
//
|
|
// Created by Shadowfacts on 8/28/18.
|
|
// Copyright © 2018 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import Pachyderm
|
|
|
|
extension Status: Equatable {
|
|
public static func ==(lhs: Status, rhs: Status) -> Bool {
|
|
return lhs.id == rhs.id
|
|
}
|
|
}
|
|
|
|
extension Account: Equatable {
|
|
public static func ==(lhs: Account, rhs: Account) -> Bool {
|
|
return lhs.id == rhs.id
|
|
}
|
|
}
|