graphlite-cli 0.0.1

Command-line interface for GraphLite
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2024-2025 DeepGraph Inc.
// SPDX-License-Identifier: Apache-2.0
//
//! CLI module for GraphLite
//!
//! Provides command-line interface for database initialization,
//! interactive GQL console (REPL), and one-off query execution.

pub mod commands;
pub mod gqlcli;
pub mod output;

pub use commands::{Cli, Commands};
pub use gqlcli::{handle_gql, handle_install, handle_query};