ggen-api 5.1.3

REST API layer for ggen monetization: marketplace, billing, and SaaS operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! HTTP request handlers

pub mod marketplace;
pub mod auth;
pub mod billing;
pub mod health;

pub use marketplace::*;
pub use auth::*;
pub use billing::*;
pub use health::*;