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 421 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
  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 pcat;
  7. pub mod hash;
  8. pub mod info;
  9. pub fn commands<'a>() -> Vec<CmdEntry<'a>> {
  10. vec![
  11. pcat::PCat::get_entry(),
  12. make_uuid::MakeUuid::get_entry(),
  13. import_json::ImportJson::get_entry(),
  14. parse_marc::ParseMarc::get_entry(),
  15. hash::Hash::get_entry(),
  16. info::Info::get_entry()
  17. ]
  18. }
Tip!

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

Comments

Loading...