diff options
author | David Blajda <blajda@hotmail.com> | 2018-12-27 22:03:23 +0000 |
---|---|---|
committer | David Blajda <blajda@hotmail.com> | 2018-12-27 22:03:23 +0000 |
commit | 678e3d3f28cb8594204dc5e2b7597ae66a4582c7 (patch) | |
tree | 55b563cfdc09dab8f18c1f4d688ebf0c2187985c /src/lib.rs | |
parent | cb1b144e48ee357a76f551433d4886f092d259c8 (diff) |
Use Id types for endpoints and implement kraken headers
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,10 +10,10 @@ pub mod helix; pub mod kraken; pub mod types; pub mod error; -pub mod sync; +mod sync; pub mod namespace; pub mod client; pub mod models; pub use self::helix::Client as HelixClient; -//pub use self::kraken::Client as KrakenClient; +pub use self::kraken::Client as KrakenClient; |