church_controller_rust/src/main.rs

11 lines
118 B
Rust
Raw Normal View History

2021-12-10 15:16:05 -08:00
mod tests;
mod modules;
2021-12-17 12:39:11 -08:00
const SERVER_ADDRESS: &str = "localhost:5000";
2021-12-10 15:16:05 -08:00
fn main() {
2021-12-17 18:02:34 -08:00
println!("hello world");
2021-12-17 12:39:11 -08:00
}