11 lines
96 B
Go
11 lines
96 B
Go
|
package ports
|
||
|
|
||
|
import (
|
||
|
"th7/data/core"
|
||
|
)
|
||
|
|
||
|
type DBPort interface {
|
||
|
Close()
|
||
|
Save(core.Data)
|
||
|
}
|