Section I - library
We will also declare these dependencies in our share src/lib.rs
library with macros in use.
We also need to provide a share function get_unix_now()
that teh daas module will need. So we declare the use
of the dependencies and the function itself.
To add the daas module to our library, we declare it at the bottom of our src/lib.rs
file, (after the hello_world module).
Last updated
Was this helpful?