mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
7 lines
69 B
Go
7 lines
69 B
Go
|
package core
|
||
|
|
||
|
type Cloneable interface {
|
||
|
Value
|
||
|
Clone() Cloneable
|
||
|
}
|