diff options
| author | Namilskyy <alive6863@gmail.com> | 2025-12-01 14:06:10 +0300 |
|---|---|---|
| committer | Namilskyy <alive6863@gmail.com> | 2025-12-01 14:06:10 +0300 |
| commit | 068eea55e0612184151461e64633b3dc18e53490 (patch) | |
| tree | d3e20aea860a88e2b50ad3d35ddbd8792a1e531e /src/lib.rs | |
| parent | 2029c2c09284d0228c0bce2977fdfa0ca8a8db06 (diff) | |
Implemented test suite, fixed some issues and added more modular structure into .woodpecker.yaml
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..ed6b426 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,14 @@ + +pub mod cfg { + pub mod config; +} + +pub mod net { + pub mod http_package; + pub mod i2p_package; +} + +pub mod pkgtoolkit { + pub mod pkgtools; +} + |
