remove pointers on configs

This commit is contained in:
Livio Amstutz
2020-03-27 13:57:16 +01:00
parent f280da5a76
commit f5af4461ad
8 changed files with 20 additions and 20 deletions

View File

@@ -14,6 +14,6 @@ type Config struct {
API *api.Config
}
func Start(ctx context.Context, config *Config, authZ *auth.Config) error {
func Start(ctx context.Context, config Config, authZ auth.Config) error {
return errors.ThrowUnimplemented(nil, "ADMIN-n8vw5", "not implemented yet") //TODO: implement
}