Skip to content

Commit

Permalink
Group constants
Browse files Browse the repository at this point in the history
  • Loading branch information
ansd committed Mar 19, 2021
1 parent 8e6b2b1 commit c973e29
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,14 @@ import (
// +kubebuilder:scaffold:imports
)

const vhostControllerName = "vhost-controller"
const queueControllerName = "queue-controller"
const exchangeControllerName = "exchange-controller"
const bindingControllerName = "binding-controller"
const userControllerName = "user-controller"
const policyControllerName = "policy-controller"
const (
vhostControllerName = "vhost-controller"
queueControllerName = "queue-controller"
exchangeControllerName = "exchange-controller"
bindingControllerName = "binding-controller"
userControllerName = "user-controller"
policyControllerName = "policy-controller"
)

var (
scheme = runtime.NewScheme()
Expand Down

0 comments on commit c973e29

Please sign in to comment.