0fcb2d0b2f
Add support for passing tags to Pagerduty and allow notification on specific event categories such as Class, Group and Component. Ref #19912, #19913 Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
16 lines
387 B
Go
16 lines
387 B
Go
// Copyright 2017, The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE.md file.
|
|
|
|
// +build purego
|
|
|
|
package cmp
|
|
|
|
import "reflect"
|
|
|
|
const supportAllowUnexported = false
|
|
|
|
func retrieveUnexportedField(reflect.Value, reflect.StructField) reflect.Value {
|
|
panic("retrieveUnexportedField is not implemented")
|
|
}
|