├── LICENSE ├── README ├── cmd └── nf │ └── main.go └── go.mod /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alrs/nofun/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alrs/nofun/HEAD/README -------------------------------------------------------------------------------- /cmd/nf/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alrs/nofun/HEAD/cmd/nf/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/alrs/nofun 2 | 3 | go 1.16 4 | --------------------------------------------------------------------------------