church_controller_rust/src/main.rs
2021-12-17 20:36:34 -08:00

10 lines
118 B
Rust

mod tests;
mod modules;
const SERVER_ADDRESS: &str = "localhost:5000";
fn main() {
println!("hello world");
}