surrealpatch/src/cnf/mod.rs

10 lines
356 B
Rust
Raw Normal View History

2022-02-09 13:55:21 +00:00
// The name and version of this build
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
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
pub const APP_ENDPOINT: &str = "https://app.surrealdb.com";