9 lines
96 B
Go
9 lines
96 B
Go
package ports
|
|
|
|
import "th7/data/core"
|
|
|
|
type DBPort interface {
|
|
Close()
|
|
Save([]core.Channel)
|
|
}
|