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
context.Context depends (indirectly) on fmt and bunch of other stuff. To keep core small, remove that explicit context dependency by introducing a local Context type that satisfies the right interface.
The text was updated successfully, but these errors were encountered:
encoding.json of course depends on fmt, and removing our dependency on encoding.json -- though small -- isn't easy. (Spec.PatternSyntax == "json" is just a bit too convenient to have right there. At least for now.)
context.Context depends (indirectly) on
fmt
and bunch of other stuff. To keepcore
small, remove that explicitcontext
dependency by introducing a localContext
type that satisfies the right interface.The text was updated successfully, but these errors were encountered: