// This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at https://mozilla.org/MPL/2.0/. //! `fabrica` — a self-hosted git server. //! //! The binary parses arguments through [`cli`] and dispatches. The one thing it //! does beyond that is wire the servers together for `serve` (see [`serve`]), so //! that no library crate has to depend on `web`. mod serve; use std::process::ExitCode; fn main() -> ExitCode { cli::run(serve::run) }