func getOperationCategory()

in http/server/otelaudit/otelaudit_helper.go [169:176]


func getOperationCategory(method string, opCategoryMapping map[string]msgs.OperationCategory) msgs.OperationCategory {
	if opCategoryMapping != nil {
		if cat, ok := opCategoryMapping[method]; ok {
			return cat
		}
	}
	return msgs.ResourceManagement
}