top | item 43744593 (no title) darioush | 10 months ago A funny quirk about golang is you cannot have circular dependencies at the package level, but you can have circular dependencies in go.modThe tl;dr is don't do that either. discuss order hn newest 0xjnml|10 months ago go.mod files have no dependencies, so neither they can have circular dependencies.go.mod files just list the dependencies of their respective package.
0xjnml|10 months ago go.mod files have no dependencies, so neither they can have circular dependencies.go.mod files just list the dependencies of their respective package.
0xjnml|10 months ago
go.mod files just list the dependencies of their respective package.