quickfetch 0.4.0

A library built to create package managers quickly!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
```mermaid
flowchart TD
    A[Start watching] --> B[Create watcher]
    B --> C[Watch config file]
    C --> D{Event received?}
    D -->|Yes| E{Event type?}
    E -->|Modify| F[Reload config]
    F --> G[Perform concurrent_fetch]
    E -->|Remove| H[Log removal]
    H --> I[Clear DB]
    E -->|Other| J[Log other event]
    G --> D
    I --> D
    J --> D
    D -->|No| K[End watching]
```