mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
14 lines
300 B
Swift
14 lines
300 B
Swift
//
|
|
// Database.swift
|
|
// RSDatabase
|
|
//
|
|
// Created by Brent Simmons on 12/15/19.
|
|
// Copyright © 2019 Brent Simmons. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum DatabaseError: Error, Sendable {
|
|
case suspended // On iOS, to support background refreshing, a database may be suspended.
|
|
}
|