mirror of
https://github.com/GayPizzaSpecifications/stable-diffusion-rpc.git
synced 2025-08-04 05:51:32 +00:00
8 lines
117 B
Swift
8 lines
117 B
Swift
|
import Foundation
|
||
|
|
||
|
enum SdServerError: Error {
|
||
|
case modelNotLoaded
|
||
|
case imageEncode
|
||
|
case modelNotFound
|
||
|
}
|