ooni-probe-cli/internal/cmd/getresources/getresources.go

15 lines
324 B
Go
Raw Permalink Normal View History

// 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)
}