sqry-daemon 11.0.3

sqry daemon (sqryd) — persistent code-graph service
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `sqryd` binary entry point — Task 9 U10.
//!
//! All logic lives in [`sqry_daemon::entrypoint`].  This file is intentionally
//! minimal so that integration tests can drive the daemon lifecycle via
//! `entrypoint::run()` without going through `std::process::exit`.

use std::process::ExitCode;

fn main() -> ExitCode {
    sqry_daemon::entrypoint::main_impl()
}