add client.rs to import client/result.rs

This commit is contained in:
Henry Schimke
2022-08-17 16:43:29 -05:00
parent ebe219b50d
commit c435399660
3 changed files with 3 additions and 1 deletions

1
src/client.rs Normal file
View File

@@ -0,0 +1 @@
pub mod result;

View File

@@ -1,5 +1,5 @@
use crate::XRingResult; use crate::XRingResult;
// ParsedResultType.java // ParsedResultType.java
/** /**
* Represents the type of data encoded by a barcode -- from plain text, to a * Represents the type of data encoded by a barcode -- from plain text, to a

View File

@@ -5,6 +5,7 @@ mod maxicode;
mod oned; mod oned;
mod pdf417; mod pdf417;
mod qrcode; mod qrcode;
mod client;
use std::{fmt, collections::HashMap}; use std::{fmt, collections::HashMap};