You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mimic currently has one Go mod file at the top level of the repo. This file contains all of the dependencies needed for all examples in addition to the main Mimic code.
We should avoid imposing these dependencies on developers by splitting out the main mimic code and examples into separate subdirectories with separate go mod files.
For example:
├── examples
│ └── go.mod
└── mimic
└── go.mod
The text was updated successfully, but these errors were encountered:
Mimic currently has one Go mod file at the top level of the repo. This file contains all of the dependencies needed for all examples in addition to the main Mimic code.
We should avoid imposing these dependencies on developers by splitting out the main mimic code and examples into separate subdirectories with separate go mod files.
For example:
The text was updated successfully, but these errors were encountered: