mirror of
https://github.com/GayPizzaSpecifications/stable-diffusion-rpc.git
synced 2025-08-03 05:30:54 +00:00
11 lines
200 B
Swift
11 lines
200 B
Swift
import Foundation
|
|
|
|
public enum SdCoreError: Error {
|
|
case modelNotLoaded
|
|
case imageEncodeFailed
|
|
case imageDecodeFailed
|
|
case modelNotFound
|
|
case jobNotFound
|
|
case notImplemented
|
|
}
|