gopher-core 0.5.0

A library implementing the Internet Gopher protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate bytes;
extern crate tokio_io;

pub mod codec;
pub mod types;
pub mod str;

pub use str::GopherStr;
pub use types::{
    ItemType,
    DirEntity,
    GopherRequest,
    GopherResponse,
};