hunterlong/statup

View on GitHub
database/interface.go

Summary

Maintainability
A
0 mins
Test Coverage
package database

type DbObject interface {
    Create() error
    Update() error
    Delete() error
}

type Sampler interface {
    Sample() DbObject
}