Browse Source

standardize on api_

master
Noelle 4 years ago
parent
commit
f7ba5adc88
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      src/main.rs

+ 4
- 4
src/main.rs View File

@@ -72,8 +72,8 @@ fn handle_connection(mut stream: TcpStream) {
fn route(c: &str, mut r: &mut Response) {

let mut routes = vec![];
routes.push(Route::new("api/hi", hi));
routes.push(Route::new("api/bye", bye));
routes.push(Route::new("api/hi", api_hi));
routes.push(Route::new("api/bye", api_bye));

// println!("Asked to fetch {}", c);
//assert!(Path::new(c).exists());
@@ -130,12 +130,12 @@ fn api_none(_c: &&str, r: &mut Response) {
r.set_content("There is currently no API endpoint at that address.");
}

fn hi(_c: &&str, r: &mut Response) {
fn api_hi(_c: &&str, r: &mut Response) {
r.set_header("HTTP/1.1 200 OK\r\n\r\n");
r.set_content("Hello there!");
}

fn bye(_c: &&str, r: &mut Response) {
fn api_bye(_c: &&str, r: &mut Response) {
r.set_header("HTTP/1.1 200 OK\r\n\r\n");
r.set_content("Leaving so soon?");
}

Loading…
Cancel
Save