TribufuRust/src/lib.rs
2023-12-24 08:22:52 -03:00

12 lines
206 B
Rust

// Copyright (c) Tribufu. All Rights Reserved.
#![allow(dead_code)]
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
pub mod client;
pub mod games;
pub mod oauth2;
pub mod token;
pub use client::*;