Skip to content

Commit

Permalink
Merge branch 'client-server-modules' into 'master'
Browse files Browse the repository at this point in the history
Move client and server code into protocol submodules

Things were getting too large in protocol.rs

See merge request !17
  • Loading branch information
shaladdle committed Feb 8, 2016
2 parents d223c69 + 5d8d04d commit 5d05eba
Show file tree
Hide file tree
Showing 5 changed files with 753 additions and 724 deletions.
4 changes: 4 additions & 0 deletions tarpc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ extern crate test;
#[macro_use]
extern crate lazy_static;

macro_rules! pos {
() => (concat!(file!(), ":", line!()))
}

/// Provides the tarpc client and server, which implements the tarpc protocol.
/// The protocol is defined by the implementation.
pub mod protocol;
Expand Down
Loading

0 comments on commit 5d05eba

Please sign in to comment.