[module] data - copyable

This commit is contained in:
shynd 2024-06-26 05:37:43 +02:00
parent 8e67d4f62c
commit 38cfe30644
No known key found for this signature in database
GPG Key ID: 31DC000B2E21D69D
1 changed files with 5 additions and 0 deletions

5
pkg/KFData/Copyable.go Normal file
View File

@ -0,0 +1,5 @@
package KFData
type Copyable interface {
Copy() Copyable
}