jokoapi/lib.rs
1/*
2api->builder
3 apikey()
4 schema
5 endpoints()
6
7enum endpoint
8*/
9
10pub mod end_point;
11const API_BASE_URL: &str = "https://api.guildwars2.com";
12const API_BASE_V2_URL: &str = const_format::concatcp!(API_BASE_URL, "/v2");
13
14// Make sure to set the following options when you create client
15// user_agent
16// https only
17//