mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
12 lines
240 B
Go
12 lines
240 B
Go
package imports
|
|
|
|
import (
|
|
"github.com/muety/wakapi/models"
|
|
"time"
|
|
)
|
|
|
|
type DataImporter interface {
|
|
Import(*models.User, time.Time, time.Time) (<-chan *models.Heartbeat, error)
|
|
ImportAll(*models.User) (<-chan *models.Heartbeat, error)
|
|
}
|