Browse Source

register protobuf config loader

Darien Raymond 9 years ago
parent
commit
348893a02a
1 changed files with 4 additions and 0 deletions
  1. 4 0
      config_loader.go

+ 4 - 0
config_loader.go

@@ -34,3 +34,7 @@ func LoadProtobufConfig(input io.Reader) (*Config, error) {
 	}
 	return config, nil
 }
+
+func init() {
+	RegisterConfigLoader(ConfigFormat_Protobuf, LoadProtobufConfig)
+}