th7/ports/db.go

9 lines
96 B
Go
Raw Normal View History

2022-11-12 14:20:29 +00:00
package ports
import "th7/data/core"
2022-11-12 14:20:29 +00:00
type DBPort interface {
Close()
Save([]core.Channel)
2022-11-12 14:20:29 +00:00
}