// Command getresources downloads the resources
package main

import (
	"log"
	"time"
)

func main() {
	log.Printf("This command is no longer needed. We will keep it into")
	log.Printf("the repository until the end of 2021, so you have\n")
	log.Printf("time to adjust your build workflow.\n")
	time.Sleep(5 * time.Second)
}