statping-ng/database/interface.go

12 lines
141 B
Go

package database
type DbObject interface {
Create() error
Update() error
Delete() error
}
type Sampler interface {
Sample() DbObject
}