Add utility interfaces

This commit is contained in:
Melody Becker 2025-04-07 17:42:32 +02:00
parent f1d4a7251b
commit d691b5193e
Signed by: mstar
SSH key fingerprint: SHA256:9VAo09aaVNTWKzPW7Hq2LW+ox9OdwmTSHRoD4mlz1yI

9
shared/interfaces.go Normal file
View file

@ -0,0 +1,9 @@
package shared
type Clonable interface {
Clone() Clonable
}
type Santisable interface {
Sanitize()
}