File: main.go

package info (click to toggle)
golang-github-anacrolix-missinggo 2.1.0-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 872 kB
  • sloc: makefile: 4
file content (11 lines) | stat: -rw-r--r-- 110 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
package main

import (
	"fmt"
	"net/url"
	"os"
)

func main() {
	fmt.Println(url.QueryUnescape(os.Args[1]))
}