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

@@ -11,6 +11,6 @@ type Config struct {
StaticDir string
}
func Start(ctx context.Context, config *Config) error {
func Start(ctx context.Context, config Config) error {
return errors.ThrowUnimplemented(nil, "CONSO-4cT5D", "not implemented yet") //TODO: implement
}