spikard-cli 0.16.1

Command-line interface for building and validating Spikard applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! GraphQL SDL (Schema Definition Language) utilities.
//!
//! This module provides language-agnostic tools for working with GraphQL SDL:
//!
//! - **builder**: Consolidates SDL reconstruction logic from all language generators
//! - **`type_mapper`**: Utilities for mapping between GraphQL and target language types

pub mod builder;
pub mod type_mapper;

pub use builder::SdlBuilder;
pub use type_mapper::{TargetLanguage, TypeMapper};