Skip to content
Snippets Groups Projects
Select Git revision
  • 6ab804f41d4a7ee2d897776e632fdf763587c1c9
  • master default protected
  • patch-1
  • gitlab_migration_1
  • dev
  • rml8
  • v1.0.6
  • v1.0.5
  • v1.0.4
  • v1.0.3
  • v1.0.2
  • v1.0.1
  • v1.0.0
  • v0.19.6
  • v0.19.5
  • v0.19.4
  • v0.19.3
  • v0.19.2
  • v0.19.1
  • v0.19.0
  • v0.18.3
  • v0.18.2
  • v0.18.1
  • v0.18.0
  • v0.17.6
  • v0.17.5
26 results

061_copy_build_extras.js

Blame
  • Forked from clients / Cesium-grp / Cesium
    Source project has a limited visibility.
    main.rs 874 B
    // Copyright 2021 Axiom-Team
    //
    // This file is part of Duniter-v2S.
    //
    // Duniter-v2S is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, version 3 of the License.
    //
    // Duniter-v2S is distributed in the hope that it will be useful,
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with Duniter-v2S. If not, see <https://www.gnu.org/licenses/>.
    
    //! Duniter Node CLI.
    
    #![warn(missing_docs)]
    
    mod chain_spec;
    #[macro_use]
    mod service;
    pub(crate) mod cli;
    mod command;
    mod rpc;
    
    fn main() -> sc_cli::Result<()> {
        command::run()
    }