diff options
author | Teddy Wing | 2018-11-09 20:46:08 +0100 |
---|---|---|
committer | Teddy Wing | 2018-11-09 20:46:08 +0100 |
commit | d7baf68d21a34e51b3ff193fc2d7513c7c270e6c (patch) | |
tree | 5d53fc552571f6a0e5fe9827ee4c23f8723b188f /license-generator/src/lib.rs | |
parent | 1c3e4bc7817b6b802e02cbf6c97e95752b2d9f45 (diff) | |
download | dome-key-web-d7baf68d21a34e51b3ff193fc2d7513c7c270e6c.tar.bz2 |
main(): Create a test purchaser
Manually check that our purchaser creation and database persistence
works.
Make `purchaser` entities public in order to call them.
Diffstat (limited to 'license-generator/src/lib.rs')
-rw-r--r-- | license-generator/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/license-generator/src/lib.rs b/license-generator/src/lib.rs index 4dd726d..8061142 100644 --- a/license-generator/src/lib.rs +++ b/license-generator/src/lib.rs @@ -8,4 +8,4 @@ extern crate sha1; pub mod database; pub mod errors; -mod purchaser; +pub mod purchaser; |