Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mefellows committed Jul 4, 2020
1 parent 7ff8e18 commit 4e605d8
Show file tree
Hide file tree
Showing 12 changed files with 2,000 additions and 1,069 deletions.
11 changes: 11 additions & 0 deletions dsl/deepcopy.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package dsl

// Simplistic map copy
func copyMap(src map[string]interface{}) map[string]interface{} {
dst := make(map[string]interface{}, len(src))

for k, v := range src {
dst[k] = v
}
return dst
}
Loading

0 comments on commit 4e605d8

Please sign in to comment.