diff options
Diffstat (limited to 'vendor/github.com/mitchellh/copystructure/copier_time.go')
-rw-r--r-- | vendor/github.com/mitchellh/copystructure/copier_time.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/github.com/mitchellh/copystructure/copier_time.go b/vendor/github.com/mitchellh/copystructure/copier_time.go new file mode 100644 index 000000000..db6a6aa1a --- /dev/null +++ b/vendor/github.com/mitchellh/copystructure/copier_time.go @@ -0,0 +1,15 @@ +package copystructure + +import ( + "reflect" + "time" +) + +func init() { + Copiers[reflect.TypeOf(time.Time{})] = timeCopier +} + +func timeCopier(v interface{}) (interface{}, error) { + // Just... copy it. + return v.(time.Time), nil +} |