Add a PubSub event parser and serialiser.

This commit is contained in:
Emmanuel Gil Peyrot 2017-06-11 14:48:31 +01:00
commit 6c1c9d0851
4 changed files with 482 additions and 0 deletions

9
src/pubsub/mod.rs Normal file
View file

@ -0,0 +1,9 @@
// Copyright (c) 2017 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
pub mod event;
pub use self::event::PubSubEvent;