mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 06:16:08 +00:00
d4b01a6c53
This removes some unused dependencies that I know we plan to re-add later, but this makes for a clean `godep save` for now.
18 lines
195 B
Go
18 lines
195 B
Go
package reflectwalk
|
|
|
|
//go:generate stringer -type=Location location.go
|
|
|
|
type Location uint
|
|
|
|
const (
|
|
None Location = iota
|
|
Map
|
|
MapKey
|
|
MapValue
|
|
Slice
|
|
SliceElem
|
|
Struct
|
|
StructField
|
|
WalkLoc
|
|
)
|