Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

mod.rs 484 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  1. mod support;
  2. pub use support::{CmdEntry, Command};
  3. pub mod import_json;
  4. pub mod make_uuid;
  5. pub mod parse_marc;
  6. pub mod parse_isbns;
  7. pub mod pcat;
  8. pub mod hash;
  9. pub mod info;
  10. pub fn commands<'a>() -> Vec<CmdEntry<'a>> {
  11. vec![
  12. pcat::PCat::get_entry(),
  13. make_uuid::MakeUuid::get_entry(),
  14. import_json::ImportJson::get_entry(),
  15. parse_marc::ParseMarc::get_entry(),
  16. parse_isbns::ParseISBNs::get_entry(),
  17. hash::Hash::get_entry(),
  18. info::Info::get_entry()
  19. ]
  20. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...