1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 08:32:40 +08:00
Files
go-mixed/structs/copy.go
2022-04-22 14:30:37 +08:00

8 lines
109 B
Go

package structs
func Copy(source, target any, opts ...optionFunc) {
opt := createOptions(opts)
_ = opt
}