# Packages
# README
Utility Package
The utility
package provides functions for common utility tasks such as networking, system and other.
Usage
-
In your project, open a terminal or command prompt and navigate to the root directory of your Go project.
-
Use the
go get
command followed by the import path to download the package and its dependencies. For example, if the import path isgithub.com/passon-engineering/sw-go-utility-lib
, run the following command:go get github.com/passon-engineering/sw-go-utility-lib
-
After running
go get
, Go will download the package and its dependencies and store them in your local Go workspace. -
In your Go code, you can import the package using the import path you identified earlier. For example:
import "github.com/passon-engineering/sw-go-utility-lib"
-
You can now use the functions, types, and other elements provided by the external package in your own code.
Contributing
Contributions to the logger package are welcome! If you find any issues or have suggestions for improvement, please open an issue or submit a pull request.