Using This Fork
This is a fork of lrstanley/entrest with additional features.
For a complete list of changes and new features in this fork, see the Fork Changelog.
Installation
To use this fork in your project, you have two options:
Option 1: Using Go Module Replace (Recommended)
This approach maintains compatibility with the upstream module path, making it easier to switch back to upstream or merge upstream changes.
Add this to your go.mod:
require github.com/lrstanley/entrest v1.0.2
replace github.com/lrstanley/entrest => github.com/accelleran/entrest v1.x.xThen in your code, continue using the original import path:
import "github.com/lrstanley/entrest"Option 2: Direct Import
Alternatively, if you change all your imports to use the fork directly:
go get github.com/accelleran/entrest@latestimport "github.com/accelleran/entrest"