Default severity: warning
Require context.Context to be the first parameter.
Bad
func Load(id string, ctx context.Context) errorGood
func Load(ctx context.Context, id string) errorRequire context.Context to be the first parameter.
Default severity: warning
Require context.Context to be the first parameter.
func Load(id string, ctx context.Context) errorfunc Load(ctx context.Context, id string) error