Add message print for server version.

This commit is contained in:
yukirij 2024-10-02 12:29:13 -07:00
parent 64d91c30ff
commit 7092bbf70c

View File

@ -134,6 +134,8 @@ async fn handle_tls(stream:TlsStream, addr:SocketAddr, args:HttpServiceArgs) ->
#[tokio::main(flavor = "multi_thread", worker_threads = 12)]
async fn main()
{
println!("Server Version: {}", config::VERSION);
// Initialize application data.
let app;
if let Ok(result) = App::init() {