mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
9 lines
141 B
Go
9 lines
141 B
Go
package database
|
|
|
|
type IAttribute interface {
|
|
Check(attribute, value string) bool
|
|
Change(attribute, value string) bool
|
|
|
|
String() string
|
|
}
|