mirror of https://github.com/curusarn/resh
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
340 B
12 lines
340 B
package syncconnector
|
|
|
|
import "github.com/curusarn/resh/internal/record"
|
|
|
|
func (sc SyncConnector) getLatestRecord(machineId *string) (map[string]string, error) {
|
|
return map[string]string{}, nil
|
|
}
|
|
|
|
func (sc SyncConnector) downloadRecords(lastRecords map[string]string) ([]record.V1, error) {
|
|
var records []record.V1
|
|
return records, nil
|
|
}
|
|
|