2019-02-25 23:36:18 +01:00
|
|
|
package app
|
|
|
|
|
2019-02-25 23:51:18 +01:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
2019-02-25 23:36:18 +01:00
|
|
|
|
|
|
|
func synchronizeImages() error {
|
|
|
|
findMissingImages()
|
|
|
|
uploadImages()
|
2019-02-25 23:51:18 +01:00
|
|
|
return errors.New("NOT IMPLEMENTED")
|
2019-02-25 23:36:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func findMissingImages() {
|
|
|
|
logrus.Warnln("Finding missing images (NotImplemented)")
|
|
|
|
}
|
|
|
|
|
|
|
|
func uploadImages() {
|
|
|
|
logrus.Warnln("Uploading missing images (NotImplemented)")
|
|
|
|
}
|