unknwon / com

This is an open source project for commonly used functions for the Go programming language.
Apache License 2.0
755 stars 133 forks source link

Enable go modules #21

Closed radeksimko closed 5 years ago

radeksimko commented 5 years ago

Go modules are becoming a de-facto standard in the Go community and adding go.mod files with metadata helps projects which may consume this repository as a dependency in deciding how to pin transitive dependencies and how to resolve conflicts.

This is a result of the following commands:

go mod init
go get ./...
go mod tidy

in a clean Go 1.11.5 environment.

unknwon commented 5 years ago

Thank you!