added documentation

This commit is contained in:
2019-11-02 11:20:25 +01:00
parent 5ddbbc7896
commit 9b63460a1c
2 changed files with 12 additions and 2 deletions

11
doc/concept.md Normal file
View File

@@ -0,0 +1,11 @@
# GOPHERBRIDGE Concept
> Created By: Jali <jali@orca-central.de> \
> Created On: Sat 02 Nov 2019 11:09:12 AM CET \
> Last Modified On: Sat 02 Nov 2019 11:09:12 AM CET \
## Purpose
*Gopherbridge* is a small gopher server written in [Rust](https://www.rust-lang.org). It's goal is
to provide a pluggable service, that can host gopher sites and display them to a client, as well as
allowing the server to extract information from other websites

View File

@@ -3,7 +3,6 @@ extern crate clap;
extern crate tokio;
mod configuration;
mod traits;
use crate::configuration::Settings;
use std::net::SocketAddr;
@@ -18,7 +17,7 @@ use tokio::prelude::*;
fn main() {
let settings = Settings::create();
println!("Program listens on {}", settings.listen);
println!("Server listens on {}", settings.listen);
println!("Loading plugins {:?}", settings.plugins);
println!("Listening on port {}", settings.port);