added documentation
This commit is contained in:
11
doc/concept.md
Normal file
11
doc/concept.md
Normal 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
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user