-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
20 lines (13 loc) · 791 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module github.com/Karocyt/Npupu
go 1.14
replace github.com/Karocyt/Npupu/internal/solver => ./internal/solver
replace github.com/Karocyt/Npupu/internal/parser => ./internal/parser
replace github.com/Karocyt/Npupu/internal/heuristics => ./internal/heuristics
replace github.com/Karocyt/Npupu/internal/sortedhashedlist => ./internal/sortedhashedlist
replace github.com/Karocyt/Npupu/internal/sortedhashedtree => ./internal/sortedhashedtree
require (
github.com/Karocyt/Npupu/internal/heuristics v0.0.0-00010101000000-000000000000
github.com/Karocyt/Npupu/internal/parser v0.0.0-00010101000000-000000000000
github.com/Karocyt/Npupu/internal/solver v0.0.0-00010101000000-000000000000
github.com/Karocyt/Npupu/internal/sortedhashedtree v0.0.0-00010101000000-000000000000 // indirect
)