2022-02-09 13:55:21 +00:00
|
|
|
// The name and version of this build
|
2022-03-04 16:01:32 +00:00
|
|
|
pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
|
|
|
|
pub const PKG_VERS: &str = env!("CARGO_PKG_VERSION");
|
2022-02-09 13:55:21 +00:00
|
|
|
|
|
|
|
// The publicly visible name of the server
|
2022-03-04 16:01:32 +00:00
|
|
|
pub const SERVER_NAME: &str = "SurrealDB";
|
2022-01-14 17:13:44 +00:00
|
|
|
|
2022-02-09 13:55:21 +00:00
|
|
|
// The public endpoint for the database administration interface
|
2022-03-04 16:01:32 +00:00
|
|
|
pub const APP_ENDPOINT: &str = "https://app.surrealdb.com";
|