Skip to content

Commit 7a33995

Browse files
committed
feat: update module arch
1 parent 609b50a commit 7a33995

8 files changed

Lines changed: 14 additions & 29 deletions

File tree

.gitignore

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,18 @@ go.work.sum
2525
.env
2626

2727
# log file
28-
log
29-
28+
logs/
29+
log/
3030
*.log
31+
log
3132

33+
# Python virtual environment and cache files
3234
venv/
3335
__pycache__/
3436
*.pyc
35-
temp
36-
temp/
37+
38+
# Temporary files
39+
temp/
40+
tmp/
41+
*.temp
42+
*.tmp

README.md

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,7 @@ Go (generic) graph algorithms and extensible libraries focused on clarity and pe
1111
go get github.com/elecbug/netkit@latest
1212
```
1313

14-
## Packages
15-
16-
### Graph
17-
18-
- [`graph`](./network-graph/graph/): Library for creating and building unweighted graphs.
19-
- [`standard_graph`](./network-graph/graph/standard_graph/): Library for generating standard graphs like Erdos-Reyni graph.
20-
- [`algorithm`](./network-graph/algorithm/): Library containing various graph algorithms.
21-
22-
### P2P
23-
24-
- [`p2p`](./p2p/): Library that integrates with graph libraries to form networks and enable P2P broadcast experiments.
25-
26-
### Extensible
27-
28-
- [`bimap`](./bimap/): Bidirectional map with O(1) lookups key->value and value->key.
14+
<!-- ## Packages -->
2915

3016
## Development
3117

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/elecbug/netkit
2+
3+
go 1.25.0

go.sum

Whitespace-only changes.

v1/go.mod

Lines changed: 0 additions & 3 deletions
This file was deleted.

v1/go.sum

Lines changed: 0 additions & 2 deletions
This file was deleted.

v2/go.mod

Lines changed: 0 additions & 3 deletions
This file was deleted.

v2/go.sum

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)