1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! -*- mode: rust; -*-
//!
//! This file is part of xxx.
//! Copyright (c) 2022 Nyah Check
//! See LICENSE for licensing information.
//!
//! Authors:
//! - Nyah Check <hello@nyah.dev>
//! GPG signature verification.

#![allow(dead_code)]

#[macro_use]
extern crate serde_derive;

extern crate reqwest;
extern crate serde;
extern crate serde_json;
extern crate tokio;
extern crate url;

pub mod apis;
pub mod models;