LCOV - code coverage report
Current view: top level - service/src/bin - export_schema.rs (source / functions) Coverage Total Hit
Test: Rust Backend Coverage Lines: 0.0 % 4 0
Test Date: 2025-12-20 21:58:40 Functions: 0.0 % 2 0

            Line data    Source code
       1              : //! Export the GraphQL schema as SDL for codegen.
       2              : //!
       3              : //! Usage: `cargo run --bin export_schema > ../web/schema.graphql`
       4              : 
       5              : #![allow(clippy::print_stdout)]
       6              : 
       7              : use async_graphql::{EmptySubscription, Schema};
       8              : use tinycongress_api::graphql::{MutationRoot, QueryRoot};
       9              : 
      10            0 : fn main() {
      11            0 :     let schema = Schema::build(QueryRoot, MutationRoot, EmptySubscription).finish();
      12            0 :     print!("{}", schema.sdl());
      13            0 : }
        

Generated by: LCOV version 2.0-1