Skip to content
⚠️ This is a fork of lrstanley/entrest with additional features. For the official documentation, visit lrstanley.github.io/entrest.

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:

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.x

Then 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:

Terminal window
go get github.com/accelleran/entrest@latest
import "github.com/accelleran/entrest"