from your module mymod.nim you can do
    
    
    import tables
    export tables # which will export all `tables` symbols from your module
    
    ...
    

see manual: 
[export-statement](https://nim-lang.org/docs/manual.html#modules-export-statement)

Reply via email to