blob: d8646834cba65d6347bcb626fb057e668e996710 (
plain)
1
2
3
4
5
6
7
|
use fast_qr::ECL;
/// The error correction level to use for all QR code generation.
pub const QR_EC_LEVEL: ECL = ECL::L;
/// The margin size for the SVG QR code on the webpage.
pub const SVG_QR_MARGIN: usize = 1;
|