allpaca/frontend/build.rs

12 lines
277 B
Rust
Raw Normal View History

2024-07-17 17:54:48 +02:00
#[cfg(not(debug_assertions))]
pub static BASE: &'static str = "https://gpt.42069.no/api";
#[cfg(debug_assertions)]
pub static BASE: &'static str = "http://localhost/api";
fn main() {
if cfg!(debug_assertions) {
println!("cargo::rustc-env=BASE={}", BASE);
}
}