diff --git a/Sources/StableDiffusionServer/main.swift b/Sources/StableDiffusionServer/main.swift index 53e9a3b..d9392ee 100644 --- a/Sources/StableDiffusionServer/main.swift +++ b/Sources/StableDiffusionServer/main.swift @@ -39,6 +39,8 @@ struct ServerCommand: ParsableCommand { ]) .bind(host: bindHost, port: bindPort) + print("Stable Diffusion RPC running on \(bindHost):\(bindPort)") + dispatchMain() } }