14 lines
192 B
Go
14 lines
192 B
Go
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
|
|
|
|
//
|
|
|
|
package data
|
|
|
|
type Reader interface {
|
|
Read()
|
|
}
|
|
|
|
type Connector interface {
|
|
Connect() DataSource
|
|
}
|