This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Conversion of interface{} or map[string]interface{} types to protobuf struct ("google/protobuf/struct.proto"). | |
package codec | |
import ( | |
"encoding/json" | |
structpb "github.com/golang/protobuf/ptypes/struct" | |
"google.golang.org/protobuf/encoding/protojson" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rabbitmqctl add_user test test | |
rabbitmqctl set_user_tags test administrator | |
rabbitmqctl set_permissions -p / test ".*" ".*" ".*" |