# README
Go resolution logic
The way resolution of go lock files works is as follows:
- Run
go mod graph
in order to create dependency graph - Run
go list -mod=readonly -e -m all
to get the list of packages
The results of the commands above are then combined to form the finished lock file.