mirror of
https://github.com/Tribufu/TribufuRust
synced 2026-08-08 20:31:07 +00:00
12 lines
206 B
Rust
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::*;
|