Added server utils module to hold shortcuts and the like.

This commit is contained in:
Aaron Weiss 2014-11-03 00:55:56 -05:00
parent 5bbde7e96c
commit fbcc3021a8
2 changed files with 4 additions and 0 deletions

View file

@ -7,6 +7,8 @@ use data::config::Config;
use data::kinds::{IrcReader, IrcWriter};
use data::message::Message;
pub mod utils;
/// Trait describing core Server functionality
#[experimental]
pub trait Server<'a, T, U> {

2
src/server/utils.rs Normal file
View file

@ -0,0 +1,2 @@
//! Utilities and shortcuts for working with IRC servers
#![experimental]