fluentci-graphql 0.3.9

Programmable CI/CD engine without Containers, built on top of Nix ❄️
Documentation
1
2
3
4
5
6
7
use async_graphql::{EmptyMutation, EmptySubscription, Schema};
use schema::Query;

pub mod schema;
pub mod util;

pub type FluentCISchema = Schema<Query, EmptyMutation, EmptySubscription>;