statping/database/interface.go

12 lines
141 B
Go
Raw Normal View History

2020-03-04 10:29:00 +00:00
package database
type DbObject interface {
Create() error
Update() error
Delete() error
}
type Sampler interface {
Sample() DbObject
}