mirror of
https://codeberg.org/video-prize-ranch/rimgo.git
synced 2025-06-27 23:48:23 +00:00
21 lines
261 B
Go
21 lines
261 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
if len(os.Args) < 2 {
|
|
log.Fatal("Expected URL as command-line argument")
|
|
os.Exit(1)
|
|
}
|
|
url := os.Args[1]
|
|
fmt.Println(url)
|
|
if _, err := http.Get(url); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|