1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#[macro_use]
extern crate lazy_static;

pub mod client;
pub mod miscellaneous;
pub mod user;
pub mod utils;

lazy_static!
{
    /// Contains the gitea api token for testing purposes.
    pub static ref TOKEN: String = utils::get_token();
}

lazy_static!
{
    /// Contains the gitea instance url for testing purposes.
    pub static ref URL: String = utils::get_url();
}