1package internal 2 3type contextKey string 4 5const ( 6 BinaryDataKey contextKey = "binaryData" 7 ImagePathKey contextKey = "imagePath" 8 AudioPathKey contextKey = "audioPath" 9) 10 11