We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c95f0d commit 91dc6b3Copy full SHA for 91dc6b3
src/autoscaler/api/broker/binding_request_parser/parser.go
@@ -0,0 +1,23 @@
1
+package bindingrequestparser
2
+
3
+import (
4
+ "code.cloudfoundry.org/app-autoscaler/src/autoscaler/models"
5
+ "code.cloudfoundry.org/brokerapi/v13/domain"
6
+)
7
8
9
+type BindRequestParser = interface {
10
+ Parse(details domain.BindDetails) (models.AppScalingConfig, error)
11
+}
12
13
14
+type bindRequestParser struct {
15
16
17
18
+var _ BindRequestParser = &bindRequestParser{}
19
20
21
+func (brp *bindRequestParser) Parse(details domain.BindDetails) (models.AppScalingConfig, error) {
22
+ return models.AppScalingConfig{}, models.ErrUnimplemented
23
0 commit comments