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
Go services contain one Config type in the main package, and a hard-coded mirror of the type in internal/**config package. The mirror type is used in tests, but the mirror can diverge if the type in the main package is refactored.
We might be able to get rid of the duplication (and have the actual type be tested), by using a single type definition in the internal/**config package.
The text was updated successfully, but these errors were encountered:
Go services contain one
Config
type in themain
package, and a hard-coded mirror of the type ininternal/**config
package. The mirror type is used in tests, but the mirror can diverge if the type in themain
package is refactored.We might be able to get rid of the duplication (and have the actual type be tested), by using a single type definition in the
internal/**config
package.The text was updated successfully, but these errors were encountered: