blob: 79c93f61888cf8616507855f6d82b278ff6675e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// This file stores various global constants values
use const_format::concatcp;
// FlightCore user agent for web requests
pub const APP_USER_AGENT: &str = concatcp!("FlightCore/", env!("CARGO_PKG_VERSION"));
// URL of the Northstar masterserver
pub const MASTER_SERVER_URL: &str = "https://northstar.tf";
// server list endpoint
pub const SERVER_BROWSER_ENDPOINT: &str = "/client/servers";
|