Add a PubSub event parser and serialiser.
This commit is contained in:
parent
334f2f78f8
commit
6c1c9d0851
4 changed files with 482 additions and 0 deletions
9
src/pubsub/mod.rs
Normal file
9
src/pubsub/mod.rs
Normal 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;
|
||||
Loading…
Reference in a new issue